mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
Merge pull request #5677
a5127cc
tests: functional: fix python syntax (radfish)
This commit is contained in:
commit
f06c77ab72
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ try:
|
||||||
for i in range(len(command_lines)):
|
for i in range(len(command_lines)):
|
||||||
#print('Running: ' + str(command_lines[i]))
|
#print('Running: ' + str(command_lines[i]))
|
||||||
processes.append(subprocess.Popen(command_lines[i], stdout = outputs[i]))
|
processes.append(subprocess.Popen(command_lines[i], stdout = outputs[i]))
|
||||||
except Exception, e:
|
except Exception as e:
|
||||||
print('Error: ' + str(e))
|
print('Error: ' + str(e))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue