fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
update editor
[redakcja.git]
/
lib
/
vstorage
/
hgui.py
diff --git
a/lib/vstorage/hgui.py
b/lib/vstorage/hgui.py
index
36c6e23
..
f84f5fb
100644
(file)
--- a/
lib/vstorage/hgui.py
+++ b/
lib/vstorage/hgui.py
@@
-1,3
+1,4
@@
+# -*- coding: utf-8 -*-
"""
Mercurial ui module replacement.
"""
"""
Mercurial ui module replacement.
"""
@@
-5,6
+6,7
@@
import mercurial.ui
import logging
import mercurial.ui
import logging
+
class SilentUI(mercurial.ui.ui):
def __init__(self, *args, **kwargs):
class SilentUI(mercurial.ui.ui):
def __init__(self, *args, **kwargs):
@@
-51,7
+53,8
@@
class SilentUI(mercurial.ui.ui):
return text
def traceback(self, exc=None):
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, **kwargs):
pass
def progress(self, *args, **kwargs):
pass