summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/namespace_class_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/namespace_class_runme.py')
-rw-r--r--Examples/test-suite/python/namespace_class_runme.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/python/namespace_class_runme.py b/Examples/test-suite/python/namespace_class_runme.py
index aa5165562..9349f2430 100644
--- a/Examples/test-suite/python/namespace_class_runme.py
+++ b/Examples/test-suite/python/namespace_class_runme.py
@@ -7,7 +7,7 @@ except:
error = 0
if (error):
- raise RuntimeError, "Private1 is private"
+ raise RuntimeError("Private1 is private")
try:
p = Private2()
@@ -16,7 +16,7 @@ except:
error = 0
if (error):
- raise RuntimeError, "Private2 is private"
+ raise RuntimeError("Private2 is private")
EulerT3D.toFrame(1, 1, 1)