diff options
author | Vincent Driessen <me@nvie.com> | 2016-04-19 21:35:39 +0200 |
---|---|---|
committer | Vincent Driessen <me@nvie.com> | 2016-04-19 21:35:39 +0200 |
commit | 4adafc5a99947301ca0ce40511991d6d54c57a41 (patch) | |
tree | e7cf8a66b178baf8fa4fcfddc46f2134c48042ab /git/repo/base.py | |
parent | 76e19e4221684f24ef881415ec6ccb6bab6eb8e8 (diff) | |
parent | 3297fe50067da728eb6f3f47764efb223e0d6ea4 (diff) | |
download | gitpython-4adafc5a99947301ca0ce40511991d6d54c57a41.tar.gz |
Merge pull request #408 from nvie/master
Add support for diffing against root commit
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 9d013230..f74e0b59 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -54,12 +54,12 @@ from git.compat import ( defenc, PY3, safe_decode, + range, ) import os import sys import re -from six.moves import range DefaultDBType = GitCmdObjectDB if sys.version_info[:2] < (2, 5): # python 2.4 compatiblity |