summaryrefslogtreecommitdiff
path: root/git/test/objects/test_submodule.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-06-07 20:06:33 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-06-07 20:06:33 +0200
commitf6897c78be5a5530129df50742cb6cabfb8609c9 (patch)
tree95b1311a3a4bfcdf4c2dba66f360e6985184013e /git/test/objects/test_submodule.py
parentba825ea244c70d342e0098b4ab4f62507be70f12 (diff)
downloadgitpython-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.py2
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()