librarian bump
[redakcja.git] / lib / vstorage / hgui.py
index bae3f09..36c6e23 100644 (file)
@@ -1,5 +1,5 @@
 """
-    Mercurial ui module replacement.   
+    Mercurial ui module replacement.
 """
 
 import mercurial.ui
@@ -10,7 +10,7 @@ class SilentUI(mercurial.ui.ui):
     def __init__(self, *args, **kwargs):
         super(SilentUI, self).__init__(*args, **kwargs)
 
-        # make sure this doesn't collide with anything in Mercurial 
+        # make sure this doesn't collide with anything in Mercurial
         self.__logger = logging.getLogger('mercurial')
 
     def _is_trusted(self, fd, filename):
@@ -53,5 +53,5 @@ class SilentUI(mercurial.ui.ui):
     def traceback(self, exc=None):
         if exc is not None: self.__logger.exception()
 
-    def progress(self, *args):
+    def progress(self, *args, **kwargs):
         pass