diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-06-07 20:06:33 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-06-07 20:06:33 +0200 |
commit | f6897c78be5a5530129df50742cb6cabfb8609c9 (patch) | |
tree | 95b1311a3a4bfcdf4c2dba66f360e6985184013e /git/test/objects/test_submodule.py | |
parent | ba825ea244c70d342e0098b4ab4f62507be70f12 (diff) | |
download | gitpython-f6897c78be5a5530129df50742cb6cabfb8609c9.tar.gz |
Added additional opcodes to remote progress to make it compatible to newer git versions. This bug existed for quite a while but didn't show up as progress wasn't sent most of the time. All methods that could use a progress will only activate it if a progress is actually given
Diffstat (limited to 'git/test/objects/test_submodule.py')
-rw-r--r-- | git/test/objects/test_submodule.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/objects/test_submodule.py b/git/test/objects/test_submodule.py index 94675a10..14cb074c 100644 --- a/git/test/objects/test_submodule.py +++ b/git/test/objects/test_submodule.py @@ -15,7 +15,7 @@ import sys class TestRootProgress(RootUpdateProgress): """Just prints messages, for now without checking the correctness of the states""" - def update(self, op, index, max_count, message=''): + def update(self, op, index, max_count, message='', input=''): print message prog = TestRootProgress() |