Let the --quiet option don't silence --verbose if we want verbose

This commit is contained in:
Bas Stottelaar
2014-05-12 11:16:58 +02:00
parent e30cb26200
commit 9b2594355f
3 changed files with 14 additions and 11 deletions

View File

@@ -77,9 +77,9 @@ def main():
args = parser.parse_args()
if args.verbose:
headphones.VERBOSE = 2
elif args.quiet:
headphones.VERBOSE = 0
headphones.VERBOSE = True
if args.quiet:
headphones.QUIET = True
if args.daemon:
if sys.platform == 'win32':