diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-03-09 11:35:14 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2017-03-09 11:03:29 +0100 |
commit | 8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d (patch) | |
tree | 09b460ad1445ca89c11206235665dfa2b3b4566c /git/config.py | |
parent | c23ae3a48bb37ae7ebd6aacc8539fee090ca34bd (diff) | |
download | gitpython-8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d.tar.gz |
Spelling fixes
Diffstat (limited to 'git/config.py')
-rw-r--r-- | git/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git/config.py b/git/config.py index f530bac8..cd2f10f9 100644 --- a/git/config.py +++ b/git/config.py @@ -212,9 +212,9 @@ class GitConfigParser(with_metaclass(MetaParserBuilder, cp.RawConfigParser, obje self._is_initialized = False self._merge_includes = merge_includes self._lock = None - self._aquire_lock() + self._acquire_lock() - def _aquire_lock(self): + def _acquire_lock(self): if not self._read_only: if not self._lock: if isinstance(self._file_or_files, (tuple, list)): @@ -239,7 +239,7 @@ class GitConfigParser(with_metaclass(MetaParserBuilder, cp.RawConfigParser, obje self.release() def __enter__(self): - self._aquire_lock() + self._acquire_lock() return self def __exit__(self, exception_type, exception_value, traceback): |