# HG changeset patch # User Ronny Pfannschmidt # Date 1266762415 -3600 # Node ID 4bab7c3db4e192ae9dd04dfae04c4939fe6abe4d # Parent b07d487009b2235f5d03cfa3b0f08be04a4b0a17 make the progress extension honor ui.quiet diff -r b07d487009b2 -r 4bab7c3db4e1 hgext/progress.py --- a/hgext/progress.py Mon Feb 22 01:19:59 2010 +0100 +++ b/hgext/progress.py Sun Feb 21 15:26:55 2010 +0100 @@ -170,7 +170,7 @@ 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