chiark / gitweb /
Revert "Always print command output when --verbose"
authorDaniel Martí <mvdan@mvdan.cc>
Wed, 9 Jul 2014 09:11:41 +0000 (11:11 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Wed, 9 Jul 2014 09:11:41 +0000 (11:11 +0200)
This reverts commit a4cdd92448450839c307b4a04f85a3702bfa4d9c.

fdroidserver/common.py

index ff1f05837ed8ad8b5b79812cb897bf025fbed5bb..9407da29411fb8619233008663fe6ebe6c10bb90 100644 (file)
@@ -1674,7 +1674,7 @@ def FDroidPopen(commands, cwd=None, shell=False, output=True):
     while not stdout_reader.eof():
         while not stdout_queue.empty():
             line = stdout_queue.get()
-            if output or options.verbose:
+            if output and options.verbose:
                 # Output directly to console
                 sys.stderr.write(line)
                 sys.stderr.flush()