Merge pull request #327 from vzamanillo/fix-source-number
Fixed incorrect total sources count on list sourcesmaster
commit
e234c26488
|
@ -127,7 +127,7 @@ func hasStdin() bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func listSources(options *Options) {
|
func listSources(options *Options) {
|
||||||
gologger.Infof("Current list of available sources. [%d]\n", len(options.YAMLConfig.Sources))
|
gologger.Infof("Current list of available sources. [%d]\n", len(options.YAMLConfig.AllSources))
|
||||||
gologger.Infof("Sources marked with an * needs key or token in order to work.\n")
|
gologger.Infof("Sources marked with an * needs key or token in order to work.\n")
|
||||||
gologger.Infof("You can modify %s to configure your keys / tokens.\n\n", options.ConfigFile)
|
gologger.Infof("You can modify %s to configure your keys / tokens.\n\n", options.ConfigFile)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue