diff --git a/fdroid b/fdroid index 999b6675..c59578cf 100755 --- a/fdroid +++ b/fdroid @@ -69,9 +69,6 @@ def main(): verbose = any(s in sys.argv for s in ['-v', '--verbose']) quiet = any(s in sys.argv for s in ['-q', '--quiet']) - if verbose and quiet: - print "Specifying verbose and quiet and the same time is silly" - sys.exit(1) if verbose: logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.DEBUG) @@ -80,6 +77,10 @@ def main(): else: logging.basicConfig(format='%(message)s', level=logging.INFO) + if verbose and quiet: + logging.critical("Specifying --verbose and --quiet and the same time is silly") + sys.exit(1) + # Trick optparse into displaying the right usage when --help is used. sys.argv[0] += ' ' + command