summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Scott <barry@barrys-emacs.org>2016-05-29 11:39:25 +0100
committerBarry Scott <barry@barrys-emacs.org>2016-05-29 11:39:25 +0100
commit9ba48ce5758fb2cd34db491845f3b9fdaefe3797 (patch)
treeff480eb6d85ecdf547dc1073c7690bef07d2302f
parent8df3dd9797c8afda79dfa99d90aadee6b0d7a093 (diff)
downloadgitpython-9ba48ce5758fb2cd34db491845f3b9fdaefe3797.tar.gz
Fix traceback because _seen_ops is not initialised
must call the base class __init__
-rw-r--r--git/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/util.py b/git/util.py
index 55ad8a03..16cc81c2 100644
--- a/git/util.py
+++ b/git/util.py
@@ -320,10 +320,10 @@ class CallableRemoteProgress(RemoteProgress):
def __init__(self, fn):
self._callable = fn
-
+ RemoteProgress.__init__(self)
+
def update(self, *args, **kwargs):
self._callable(*args, **kwargs)
-
class Actor(object):