From e836e5cdcc7e3148c388fe8c4a1bab7eeb00cc3f Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 29 May 2016 12:51:14 +0200 Subject: chore(remote): better super-class call syntax Python :) !! Related to #451 --- git/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.1