# HG changeset patch # User Pierre-Yves David # Date 2015-06-08 00:51:27 # Node ID 09e2cb2a00d7a2f48e19ebc9d51f4e7762d3407f # Parent ca656f3dffd7aa2b649363cd2dc9e313a4fec267 progress: display progress bars by default with core Mercurial As discussed multiple time during sprint, we should activate progress by default. Having progress bar significantly improve the user experience. diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -892,7 +892,7 @@ class ui(object): 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)