diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-15 15:42:00 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-15 15:42:00 +0200 |
commit | 39229db70e71a6be275dafb3dd9468930e40ae48 (patch) | |
tree | c631f2b69c7f5874834214cf32970c48f05b5613 /lib/git/objects/utils.py | |
parent | 9f51eeb2f9a1efe22e45f7a1f7b963100f2f8e6b (diff) | |
download | gitpython-39229db70e71a6be275dafb3dd9468930e40ae48.tar.gz |
Object can now create objects of the proper type in case one attempts to create an object directly - this feature is used in several places now, allowing for additional type-checking
Diffstat (limited to 'lib/git/objects/utils.py')
-rw-r--r-- | lib/git/objects/utils.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/git/objects/utils.py b/lib/git/objects/utils.py index 9b9e0c52..367ed2b7 100644 --- a/lib/git/objects/utils.py +++ b/lib/git/objects/utils.py @@ -7,7 +7,6 @@ Module for general utility functions """ import re -import commit, tag, blob, tree from git.actor import Actor def get_object_type_by_name(object_type_name): |