Submitter | Pierre-Yves David |
---|---|
Date | June 11, 2015, 7:31 a.m. |
Message ID | <ce4b4a28464a4bd38ff3.1434007893@marginatus.alto.octopoid.net> |
Download | mbox | patch |
Permalink | /patch/9599/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -890,11 +890,11 @@ class ui(object): @util.propertycache def _progbar(self): """setup the progbar singleton to the ui object""" if (self.quiet or self.debugflag - or self.configbool('progress', 'disable', True) + or self.configbool('progress', 'disable', False) or not progress.shouldprint(self)): return None return getprogbar(self) def _progclear(self):