From: Sverre Rabbelier Date: Thu, 31 Jul 2008 04:35:38 +0000 (+0200) Subject: gitstats: Bugfix for the config parsing mechanism X-Git-Url: https://repo.or.cz/w/git-stats.git/commitdiff_plain/9e6b855b9db9efe1dd165b0c8e00145eb205424e gitstats: Bugfix for the config parsing mechanism When refactoring it to make testing easier a typo slipped in and the readDefaultConfigs was actually broken instead. Bug-introduced-in: 9126a29e13ca515cb63849f480965c86c88b5d5d --- diff --git a/src/git_stats/config.py b/src/git_stats/config.py index 9cf1100..4fe9ed2 100644 --- a/src/git_stats/config.py +++ b/src/git_stats/config.py @@ -163,7 +163,7 @@ def readDefaultConfigs(convert_camel_case=True): """ paths = _getDefaultConfigPaths() - result = _readConfigPath(paths, convert_camel_case) + result = _readConfigPaths(paths, convert_camel_case) return result