diff options
author | Tanner Netterville <tannern@gmail.com> | 2015-07-15 10:54:00 -0500 |
---|---|---|
committer | Tanner Netterville <tannern@gmail.com> | 2015-07-15 10:54:00 -0500 |
commit | 9aaaa83c44d5d23565e982a705d483c656e6c157 (patch) | |
tree | e6c6656bda83999bf2d199f4f9e9ae0046cbfd98 /git/repo/fun.py | |
parent | c5e4334f38dce4cf02db5f11a6e5844f3a7c785c (diff) | |
download | gitpython-9aaaa83c44d5d23565e982a705d483c656e6c157.tar.gz |
Fix typo
Diffstat (limited to 'git/repo/fun.py')
-rw-r--r-- | git/repo/fun.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/fun.py b/git/repo/fun.py index 1d551f04..049800b9 100644 --- a/git/repo/fun.py +++ b/git/repo/fun.py @@ -121,7 +121,7 @@ def name_to_object(repo, name, return_ref=False): def deref_tag(tag): - """Recursively dereerence a tag and return the resulting object""" + """Recursively dereference a tag and return the resulting object""" while True: try: tag = tag.object |