chiark / gitweb /
Set the FDroidOpen output default back to true
authorDaniel Martí <mvdan@mvdan.cc>
Sun, 22 Jun 2014 19:29:07 +0000 (21:29 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Sun, 22 Jun 2014 19:29:07 +0000 (21:29 +0200)
Having it at False just makes SilentPopen useless.

fdroidserver/common.py

index bf89b1d581da3013d41019e77b48dcb375325bf7..32a924b5200664cd73aef5b555c076e6cc35566c 100644 (file)
@@ -1576,7 +1576,7 @@ def SilentPopen(commands, cwd=None, shell=False):
     return FDroidPopen(commands, cwd=cwd, shell=shell, output=False)
 
 
-def FDroidPopen(commands, cwd=None, shell=False, output=False):
+def FDroidPopen(commands, cwd=None, shell=False, output=True):
     """
     Run a command and capture the possibly huge output.