##// END OF EJS Templates
make the progress extension honor ui.quiet
Ronny Pfannschmidt -
r10523:4bab7c3d stable
parent child Browse files
Show More
@@ -170,7 +170,7 b' class progbar(object):'
170 sharedprog = None
170 sharedprog = None
171
171
172 def uisetup(ui):
172 def uisetup(ui):
173 if ui.interactive() and not ui.debugflag:
173 if ui.interactive() and not ui.debugflag and not ui.quiet:
174 # we instantiate one globally shared progress bar to avoid
174 # we instantiate one globally shared progress bar to avoid
175 # competing progress bars when multiple UI objects get created
175 # competing progress bars when multiple UI objects get created
176 global sharedprog
176 global sharedprog
General Comments 0
You need to be logged in to leave comments. Login now