# HG changeset patch # User Ronny Pfannschmidt # Date 2010-02-21 14:26:55 # Node ID 4bab7c3db4e192ae9dd04dfae04c4939fe6abe4d # Parent b07d487009b2235f5d03cfa3b0f08be04a4b0a17 make the progress extension honor ui.quiet diff --git a/hgext/progress.py b/hgext/progress.py --- a/hgext/progress.py +++ b/hgext/progress.py @@ -170,7 +170,7 @@ class progbar(object): sharedprog = None def uisetup(ui): - if ui.interactive() and not ui.debugflag: + if ui.interactive() and not ui.debugflag and not ui.quiet: # we instantiate one globally shared progress bar to avoid # competing progress bars when multiple UI objects get created global sharedprog