diff options
Diffstat (limited to 'cpp/test/IceBox/admin/run.py')
-rwxr-xr-x | cpp/test/IceBox/admin/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceBox/admin/run.py b/cpp/test/IceBox/admin/run.py index 8c7cafab49a..143540763e1 100755 --- a/cpp/test/IceBox/admin/run.py +++ b/cpp/test/IceBox/admin/run.py @@ -16,7 +16,7 @@ if len(head) > 0: path = [os.path.join(head, p) for p in path] path = [os.path.abspath(p) for p in path if os.path.exists(os.path.join(p, "scripts", "TestUtil.py")) ] if len(path) == 0: - raise "can't find toplevel directory!" + raise RuntimeError("can't find toplevel directory!") sys.path.append(os.path.join(path[0], "scripts")) import TestUtil |