From 7c2e61a40714ec96be975982fbca476dbbd3e7b9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Sun, 22 Jun 2014 21:29:07 +0200 Subject: [PATCH] Set the FDroidOpen output default back to true Having it at False just makes SilentPopen useless. --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.30.2