summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-05-29 12:51:14 +0200
committerSebastian Thiel <byronimo@gmail.com>2016-05-29 12:51:14 +0200
commite836e5cdcc7e3148c388fe8c4a1bab7eeb00cc3f (patch)
tree8d97fb0e87dd32a2dae5c9a1faf30885aa37b5e9
parentfb20477629bf83e66edc721725effa022a4d6170 (diff)
downloadgitpython-e836e5cdcc7e3148c388fe8c4a1bab7eeb00cc3f.tar.gz
chore(remote): better super-class call syntax
Python :) !! Related to #451
-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)