diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
commit | acf5e6ea64a2f24117f1d419c208ed1c38c43690 (patch) | |
tree | 75dedc18137297829e84f3a151130a589c3d844b /git/objects/tree.py | |
parent | 56da804ff295a05a38dc2cc73755706ea756fc52 (diff) | |
download | gitpython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz |
replaced all gitdb strings with git
Diffstat (limited to 'git/objects/tree.py')
-rw-r--r-- | git/objects/tree.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/objects/tree.py b/git/objects/tree.py index 1b5f7561..689aeaf6 100644 --- a/git/objects/tree.py +++ b/git/objects/tree.py @@ -5,7 +5,7 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php from git.util import RepoAliasMixin import git.diff as diff -from gitdb.typ import ObjectType +from git.typ import ObjectType from base import IndexObject from blob import Blob from submodule import Submodule @@ -15,7 +15,7 @@ from fun import ( tree_to_stream ) -from gitdb.util import ( +from git.util import ( to_bin_sha, join_path ) |