From 1b6b9510e0724bfcb4250f703ddf99d1e4020bbc Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 27 Oct 2010 20:51:07 +0200 Subject: Fixed bug that would cause the author's email to be a generic default one, instead of the existing and valid. The rest of the ConfigParser handling is correct, as it reads all configuration files available to git see http://github.com/Byron/GitPython/issues#issue/1 --- lib/git/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/config.py') diff --git a/lib/git/config.py b/lib/git/config.py index 92d64aea..09bad0b6 100644 --- a/lib/git/config.py +++ b/lib/git/config.py @@ -136,7 +136,7 @@ class GitConfigParser(cp.RawConfigParser, object): # initialize lock base - we want to write self._lock = self.t_lock(file_or_files) - self._lock._obtain_lock() + self._lock._obtain_lock() # END read-only check -- cgit v1.2.1