aboutsummaryrefslogtreecommitdiff
path: root/git/objects
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-06-07 13:38:48 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-06-07 14:07:59 +0200
commit9bf3fdec93fe427bb5f0bd39c986a4e977969f41 (patch)
tree554683bc11a0818e1f0038be3fa20f8a0b694ed6 /git/objects
parent09517bd78660ee3fbd6716c920c36b967f7a71cf (diff)
downloadGitPython-9bf3fdec93fe427bb5f0bd39c986a4e977969f41.tar.gz
GitPython-9bf3fdec93fe427bb5f0bd39c986a4e977969f41.zip
First run in order to fix the remote handling. Cleaned up interfaces and figured out that the implementation really should be specific to the git command. This leaves the interface open for other implemntations which use a different way to provide feedback (as we do not make assumptions about the format of a feedback line)
Diffstat (limited to 'git/objects')
-rw-r--r--git/objects/submodule/base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py
index e38b94f8..c1cc51aa 100644
--- a/git/objects/submodule/base.py
+++ b/git/objects/submodule/base.py
@@ -18,9 +18,10 @@ from git.util import (
Iterable,
join_path_native,
to_native_path_linux,
- RemoteProgress
)
+from git.db.interface import RemoteProgress
+
from git.config import SectionConstraint
from git.exc import (
InvalidGitRepositoryError,