summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-05-29 12:47:31 +0200
committerSebastian Thiel <byronimo@gmail.com>2016-05-29 12:47:31 +0200
commitff0365e053a6fa51a7f4e266c290c5e5bd309f6a (patch)
treeff480eb6d85ecdf547dc1073c7690bef07d2302f
parent8df3dd9797c8afda79dfa99d90aadee6b0d7a093 (diff)
parent9ba48ce5758fb2cd34db491845f3b9fdaefe3797 (diff)
downloadgitpython-ff0365e053a6fa51a7f4e266c290c5e5bd309f6a.tar.gz
Merge pull request #451 from barry-scott/pr-fix-callable-remote-progress
Fix traceback because _seen_ops is not initialised
-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):