Browse Source

prism-auto: fix compilation issue (whitespace) under python3

master
Joachim Klein 8 years ago
committed by Dave Parker
parent
commit
482d47c458
  1. 6
      prism/etc/scripts/prism-auto

6
prism/etc/scripts/prism-auto

@ -531,9 +531,9 @@ def verifyAndCleanupExports(outFiles, exportPrefix):
else: else:
msg = msg + "FAIL (no " + os.path.basename(expFile) + " to compare to)" msg = msg + "FAIL (no " + os.path.basename(expFile) + " to compare to)"
result = False result = False
printTestResult(msg)
if not result:
return result
printTestResult(msg)
if not result:
return result
return result return result
# Run a benchmark, specified by a list of command-line args, # Run a benchmark, specified by a list of command-line args,

Loading…
Cancel
Save