Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Omegaice committed Mar 2, 2015
1 parent ef2745e commit fc93211
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def run_test(protomol_path, conf_file, pwd, parallel):
cmd.append(protomol_path)
cmd.append(conf_file)

p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(stdout, stderr) = p.communicate()
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
p.communicate()
if p.returncode > 0:
s = 'Not able to execute Protomol!\n'
s += 'cmd: ' + str(cmd) + '\n'
Expand Down

0 comments on commit fc93211

Please sign in to comment.