Set the FDroidOpen output default back to true

Having it at False just makes SilentPopen useless.
This commit is contained in:
Daniel Martí 2014-06-22 21:29:07 +02:00
parent 14f865a5b1
commit 7c2e61a407

View 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.