diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-06-07 13:38:48 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-06-07 14:07:59 +0200 |
commit | 9bf3fdec93fe427bb5f0bd39c986a4e977969f41 (patch) | |
tree | 554683bc11a0818e1f0038be3fa20f8a0b694ed6 /git/remote.py | |
parent | 09517bd78660ee3fbd6716c920c36b967f7a71cf (diff) | |
download | gitpython-9bf3fdec93fe427bb5f0bd39c986a4e977969f41.tar.gz |
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/remote.py')
-rw-r--r-- | git/remote.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/git/remote.py b/git/remote.py index f44f0150..47adedbf 100644 --- a/git/remote.py +++ b/git/remote.py @@ -13,15 +13,14 @@ from config import SectionConstraint from git.util import ( LazyMixin, Iterable, - IterableList, - RemoteProgress + IterableList ) from git.db.interface import TransportDB from refs import RemoteReference import os -__all__ = ('RemoteProgress', 'Remote') +__all__ = ['Remote'] class PushInfo(object): """Wrapper for basic PushInfo to provide the previous interface which includes @@ -268,7 +267,7 @@ class Remote(LazyMixin, Iterable): in their flags. If the operation fails completely, the length of the returned IterableList will be null.""" - return self.repo.push(self.name, refspec, progress, **Kwargs) + return self.repo.push(self.name, refspec, progress, **kwargs) @property def config_reader(self): |