Skip to content

Commit 9ba48ce

Browse files
committed
Fix traceback because _seen_ops is not initialised
must call the base class __init__
1 parent 8df3dd9 commit 9ba48ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎git/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,10 @@ class CallableRemoteProgress(RemoteProgress):
320320

321321
def __init__(self, fn):
322322
self._callable = fn
323-
323+
RemoteProgress.__init__(self)
324+
324325
def update(self, *args, **kwargs):
325326
self._callable(*args, **kwargs)
326-
327327

328328
class Actor(object):
329329

0 commit comments

Comments
 (0)