summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/python_builtin_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/python_builtin_runme.py')
-rw-r--r--Examples/test-suite/python/python_builtin_runme.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/python/python_builtin_runme.py b/Examples/test-suite/python/python_builtin_runme.py
index 26e757ca7..8a42a2607 100644
--- a/Examples/test-suite/python/python_builtin_runme.py
+++ b/Examples/test-suite/python/python_builtin_runme.py
@@ -32,7 +32,7 @@ if is_python_builtin():
passed = False
try:
h = hash(ExceptionHashFunction())
- except RuntimeError, e:
+ except RuntimeError as e:
passed = str(e).find("oops") != -1
pass