mercurial/ui.py
changeset 25519 09e2cb2a00d7
parent 25499 0fa964d6fd48
child 25568 c1ff82daed62
equal deleted inserted replaced
25518:ca656f3dffd7 25519:09e2cb2a00d7
   890 
   890 
   891     @util.propertycache
   891     @util.propertycache
   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)
   899 
   899 
   900     def _progclear(self):
   900     def _progclear(self):