X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/88dbb13a387b1e3a2b45fde672179ed552c269c1..1be132dc9f105e745e979ec6eaeb8d7bc86089f1:/lib/vstorage/hgui.py diff --git a/lib/vstorage/hgui.py b/lib/vstorage/hgui.py index bae3f092..36c6e230 100644 --- a/lib/vstorage/hgui.py +++ b/lib/vstorage/hgui.py @@ -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