Skip to content

Commit

Permalink
WTF-400 Fix wrong YAML identifier for some modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Cummer committed Apr 15, 2019
1 parent fcbfd8e commit 0790493
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/cryptoexchanges/blockfolio/settings.go
Expand Up @@ -20,7 +20,7 @@ type Settings struct {
}

func NewSettingsFromYAML(ymlConfig *config.Config) *Settings {
localConfig, _ := ymlConfig.Get("wtf.mods.todo")
localConfig, _ := ymlConfig.Get("wtf.mods.blockfolio")

settings := Settings{
common: cfg.NewCommonSettingsFromYAML(ymlConfig),
Expand Down
2 changes: 1 addition & 1 deletion modules/datadog/settings.go
Expand Up @@ -16,7 +16,7 @@ type Settings struct {
}

func NewSettingsFromYAML(ymlConfig *config.Config) *Settings {
localConfig, _ := ymlConfig.Get("wtf.mods.todo")
localConfig, _ := ymlConfig.Get("wtf.mods.datadog")

settings := Settings{
common: cfg.NewCommonSettingsFromYAML(ymlConfig),
Expand Down

0 comments on commit 0790493

Please sign in to comment.