From 32c0e2cb1a5f31d6e7f6ed0d300a4dd59b4aeb9b Mon Sep 17 00:00:00 2001 From: Sverre Rabbelier Date: Thu, 31 Jul 2008 06:35:38 +0200 Subject: [PATCH] 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 --- src/git_stats/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.4.GIT