diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-08-15 17:24:31 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-08-15 17:24:31 -0500 |
commit | f06c77ab7201605e34b15fa8c409fd4dc49399b4 (patch) | |
tree | 90f840bce3715ecee116594e993cf93f92db01a8 /tests/functional_tests | |
parent | Merge pull request #5674 (diff) | |
parent | tests: functional: fix python syntax (diff) | |
download | monero-f06c77ab7201605e34b15fa8c409fd4dc49399b4.tar.xz |
Merge pull request #5677
a5127cc tests: functional: fix python syntax (radfish)
Diffstat (limited to 'tests/functional_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) |