"""
- Mercurial ui module replacement.
+ Mercurial ui module replacement.
"""
import mercurial.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):