summaryrefslogtreecommitdiff
path: root/git/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/util.py')
-rw-r--r--git/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/util.py b/git/util.py
index 64fa45e1..5ed014fc 100644
--- a/git/util.py
+++ b/git/util.py
@@ -320,7 +320,7 @@ class CallableRemoteProgress(RemoteProgress):
def __init__(self, fn):
self._callable = fn
- RemoteProgress.__init__(self)
+ super(CallableRemoteProgress, self).__init__()
def update(self, *args, **kwargs):
self._callable(*args, **kwargs)