aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorredfish <redfish@galactica.pw>2019-06-19 21:41:37 -0400
committerredfish <redfish@galactica.pw>2019-06-19 21:41:37 -0400
commita5127cca890302d996ecdcd709e359a5605b0cfc (patch)
treead778bd5d3c3e64fa613f5a6d35b480b4c64c221 /tests
parentMerge pull request #5641 (diff)
downloadmonero-a5127cca890302d996ecdcd709e359a5605b0cfc.tar.xz
tests: functional: fix python syntax
Diffstat (limited to 'tests')
-rwxr-xr-xtests/functional_tests/functional_tests_rpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional_tests/functional_tests_rpc.py b/tests/functional_tests/functional_tests_rpc.py
index 25ab641ab..77d0e4c4d 100755
--- a/tests/functional_tests/functional_tests_rpc.py
+++ b/tests/functional_tests/functional_tests_rpc.py
@@ -65,7 +65,7 @@ try:
for i in range(len(command_lines)):
#print('Running: ' + str(command_lines[i]))
processes.append(subprocess.Popen(command_lines[i], stdout = outputs[i]))
-except Exception, e:
+except Exception as e:
print('Error: ' + str(e))
sys.exit(1)