diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-10-27 20:51:07 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-10-27 20:51:07 +0200 |
commit | 1b6b9510e0724bfcb4250f703ddf99d1e4020bbc (patch) | |
tree | cc59bebcb6cbc6a1a9210e4ff123f2a256105261 /lib/git/config.py | |
parent | 2c0b92e40ece170b59bced0cea752904823e06e7 (diff) | |
download | gitpython-1b6b9510e0724bfcb4250f703ddf99d1e4020bbc.tar.gz |
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
Diffstat (limited to 'lib/git/config.py')
-rw-r--r-- | lib/git/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |