chiark / gitweb /
Don't output everything when using --verbose
authorDaniel Martí <mvdan@mvdan.cc>
Sat, 21 Jun 2014 21:03:36 +0000 (23:03 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Sat, 21 Jun 2014 21:03:36 +0000 (23:03 +0200)
This is especially painful when using stuff like aapt to obtain data

fdroidserver/common.py

index edd1a6a2aae3d53939feaeeb5df265f860dfa35b..5db9f5403d28c0d908be418ab9e1c5ea0629006a 100644 (file)
@@ -1597,7 +1597,7 @@ def FDroidPopen(commands, cwd=None, shell=False, output=False):
     while not stdout_reader.eof():
         while not stdout_queue.empty():
             line = stdout_queue.get()
-            if output or options.verbose:
+            if output:
                 # Output directly to console
                 sys.stdout.write(line)
                 sys.stdout.flush()