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/util.py | |
parent | c23ae3a48bb37ae7ebd6aacc8539fee090ca34bd (diff) | |
download | gitpython-8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d.tar.gz |
Spelling fixes
Diffstat (limited to 'git/util.py')
-rw-r--r-- | git/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/util.py b/git/util.py index 1dbbd35d..5553a0aa 100644 --- a/git/util.py +++ b/git/util.py @@ -809,7 +809,7 @@ class BlockingLockFile(LockFile): def _obtain_lock(self): """This method blocks until it obtained the lock, or raises IOError if it ran out of time or if the parent directory was not available anymore. - If this method returns, you are guranteed to own the lock""" + If this method returns, you are guaranteed to own the lock""" starttime = time.time() maxtime = starttime + float(self._max_block_time) while True: |