From: Daniel Martí Date: Sun, 22 Jun 2014 19:29:07 +0000 (+0200) Subject: Set the FDroidOpen output default back to true X-Git-Tag: 0.2~14 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7c2e61a4;p=fdroidserver.git Set the FDroidOpen output default back to true Having it at False just makes SilentPopen useless. --- diff --git a/fdroidserver/common.py b/fdroidserver/common.py index bf89b1d5..32a924b5 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -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.