diff options
author | redfish <redfish@galactica.pw> | 2019-06-19 21:41:37 -0400 |
---|---|---|
committer | redfish <redfish@galactica.pw> | 2019-06-19 21:41:37 -0400 |
commit | a5127cca890302d996ecdcd709e359a5605b0cfc (patch) | |
tree | ad778bd5d3c3e64fa613f5a6d35b480b4c64c221 /tests | |
parent | Merge pull request #5641 (diff) | |
download | monero-a5127cca890302d996ecdcd709e359a5605b0cfc.tar.xz |
tests: functional: fix python syntax
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functional_tests/functional_tests_rpc.py | 2 |
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) |