diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-15 13:42:33 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-16 02:46:32 +0200 |
commit | b02662d4e870a34d2c6d97d4f702fcc1311e5177 (patch) | |
tree | 6f2bc1d942f979b3bb379d833700fe33f955415d /git/diff.py | |
parent | 0210e394e0776d0b7097bf666bebd690ed0c0e4f (diff) | |
download | gitpython-b02662d4e870a34d2c6d97d4f702fcc1311e5177.tar.gz |
src: reduce needless deps to `gitdb.util`
Diffstat (limited to 'git/diff.py')
-rw-r--r-- | git/diff.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/git/diff.py b/git/diff.py index 35c7ff86..52dbf3a7 100644 --- a/git/diff.py +++ b/git/diff.py @@ -5,18 +5,17 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php import re -from gitdb.util import hex_to_bin +from git.cmd import handle_process_output +from git.compat import ( + defenc, + PY3 +) +from git.util import finalize_process, hex_to_bin from .compat import binary_type from .objects.blob import Blob from .objects.util import mode_str_to_int -from git.compat import ( - defenc, - PY3 -) -from git.cmd import handle_process_output -from git.util import finalize_process __all__ = ('Diffable', 'DiffIndex', 'Diff', 'NULL_TREE') |