diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-21 18:56:29 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-21 18:57:34 +0100 |
commit | d565a874f29701531ce1fc0779592838040d3edf (patch) | |
tree | c2ba9a69ae90eedc01616b409a179baf705a3feb /git/objects/submodule/base.py | |
parent | e4d3809161fc54d6913c0c2c7f6a7b51eebe223f (diff) | |
download | gitpython-d565a874f29701531ce1fc0779592838040d3edf.tar.gz |
Fixed regression in test-suite for IndexFile
Previously, it checked for AssertionErrors, now we have to implement
need-unbare-repo check ourselves.
Diffstat (limited to 'git/objects/submodule/base.py')
-rw-r--r-- | git/objects/submodule/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py index cd7d4ec4..94322a55 100644 --- a/git/objects/submodule/base.py +++ b/git/objects/submodule/base.py @@ -3,7 +3,6 @@ from .util import ( mkhead, sm_name, sm_section, - unbare_repo, SubmoduleConfigParser, find_first_remote_branch ) @@ -14,7 +13,8 @@ from git.util import ( join_path_native, to_native_path_linux, RemoteProgress, - rmtree + rmtree, + unbare_repo ) from git.config import ( |