From 9ba48ce5758fb2cd34db491845f3b9fdaefe3797 Mon Sep 17 00:00:00 2001 From: Barry Scott Date: Sun, 29 May 2016 11:39:25 +0100 Subject: Fix traceback because _seen_ops is not initialised must call the base class __init__ --- git/util.py | 4 ++-- 1 file 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): -- cgit v1.2.1