X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/88dbb13a387b1e3a2b45fde672179ed552c269c1..1b6e22f8afa7a50c8f8e047ef638293b496251cb:/lib/vstorage/hgui.py

diff --git a/lib/vstorage/hgui.py b/lib/vstorage/hgui.py
index bae3f092..f84f5fb4 100644
--- a/lib/vstorage/hgui.py
+++ b/lib/vstorage/hgui.py
@@ -1,16 +1,18 @@
+# -*- coding: utf-8 -*-
 """
-    Mercurial ui module replacement.   
+    Mercurial ui module replacement.
 """
 
 import mercurial.ui
 import logging
 
+
 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):
@@ -51,7 +53,8 @@ class SilentUI(mercurial.ui.ui):
         return text
 
     def traceback(self, exc=None):
-        if exc is not None: self.__logger.exception()
+        if exc is not None:
+            self.__logger.exception()
 
-    def progress(self, *args):
+    def progress(self, *args, **kwargs):
         pass