Changed use of popen to getstatusoutput #4464

The getstatusoutput function seems easier to use
This commit is contained in:
Nick Bolton 2015-03-21 19:05:43 +00:00
parent 88d85204db
commit dcf8a9f5f0
1 changed files with 4 additions and 5 deletions

View File

@ -775,13 +775,12 @@ class InternalCommands:
if sys.version_info < (2, 4):
raise Exception("Python 2.4 or greater required.")
output = os.popen(
output = commands.getstatusoutput(
"macdeployqt %s/Synergy.app -verbose=2 -codesign='%s'" % (
targetDir, self.macIdentity)).read()
targetDir, self.macIdentity))
print output
if "ERROR" in output:
print output[1]
if "ERROR" in output[1]:
raise Exception("macdeployqt failed")
def signmac(self):