##// END OF EJS Templates
progress: display progress bars by default with core Mercurial...
Pierre-Yves David -
r25519:09e2cb2a default
parent child Browse files
Show More
@@ -892,7 +892,7 b' class ui(object):'
892 def _progbar(self):
892 def _progbar(self):
893 """setup the progbar singleton to the ui object"""
893 """setup the progbar singleton to the ui object"""
894 if (self.quiet or self.debugflag
894 if (self.quiet or self.debugflag
895 or self.configbool('progress', 'disable', True)
895 or self.configbool('progress', 'disable', False)
896 or not progress.shouldprint(self)):
896 or not progress.shouldprint(self)):
897 return None
897 return None
898 return getprogbar(self)
898 return getprogbar(self)
General Comments 0
You need to be logged in to leave comments. Login now