Use logging with proper format when warning about improper verbose/quiet usage

This commit is contained in:
Daniel Martí 2014-07-05 14:17:02 +02:00
parent 5bf5ba04a6
commit 4814238baf
1 changed files with 4 additions and 3 deletions

7
fdroid
View File

@ -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