diff options
author | volpino <fox91@anche.no> | 2012-07-02 17:45:31 +0200 |
---|---|---|
committer | volpino <fox91@anche.no> | 2012-07-02 17:45:31 +0200 |
commit | 5a2f2e9eab2338eb20b52276c49106f63d923d2a (patch) | |
tree | 4a1ca69f9ea6b0c21c3c2b30b91138b96583db72 /bin | |
parent | euscan: naive implementation of --mirror (diff) | |
parent | euscan: don't import pkg_resources, we don't want all these warnings (diff) | |
download | euscan-5a2f2e9eab2338eb20b52276c49106f63d923d2a.tar.gz euscan-5a2f2e9eab2338eb20b52276c49106f63d923d2a.tar.bz2 euscan-5a2f2e9eab2338eb20b52276c49106f63d923d2a.zip |
Merge branch 'master' of https://github.com/iksaif/euscan
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/euscan | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -192,7 +192,7 @@ def parse_args(): getopt_options['short']['global'] = "hVCqv1bf:pm" getopt_options['long']['global'] = [ "help", "version", "nocolor", "quiet", "verbose", "oneshot", - "brute-force=", "format=" + "brute-force=", "format=", "progress" ] short_opts = getopt_options['short']['global'] @@ -245,7 +245,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 |