diff options
author | Corentin Chary <corentin.chary@gmail.com> | 2012-07-02 11:20:18 +0200 |
---|---|---|
committer | Corentin Chary <corentin.chary@gmail.com> | 2012-07-02 11:20:18 +0200 |
commit | 84a764dad5a1a16ee48f2eb61e532ba311ffb4cf (patch) | |
tree | 1e28c5d308d0c098dcc464d41c848af54098233c /bin | |
parent | euscanwww: add --category to scan_metadata, remove homepage and description (diff) | |
download | euscan-84a764dad5a1a16ee48f2eb61e532ba311ffb4cf.tar.gz euscan-84a764dad5a1a16ee48f2eb61e532ba311ffb4cf.tar.bz2 euscan-84a764dad5a1a16ee48f2eb61e532ba311ffb4cf.zip |
euscan: allow --progress with --quiet
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/euscan | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -188,7 +188,7 @@ def parse_args(): getopt_options['short']['global'] = "hVCqv1bf:p" getopt_options['long']['global'] = [ "help", "version", "nocolor", "quiet", "verbose", "oneshot", - "brute-force=", "format=" + "brute-force=", "format=", "progress" ] short_opts = getopt_options['short']['global'] @@ -241,7 +241,7 @@ def main(): if CONFIG['verbose'] > 2: HTTPConnection.debuglevel = 1 - if not CONFIG["format"]: + if not CONFIG["format"] and not CONFIG['quiet']: CONFIG["progress"] = False on_progress = None |