Mercurial > hg
changeset 10523:4bab7c3db4e1 stable
make the progress extension honor ui.quiet
author | Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> |
---|---|
date | Sun, 21 Feb 2010 15:26:55 +0100 |
parents | b07d487009b2 |
children | 3212afb33116 |
files | hgext/progress.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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