summaryrefslogtreecommitdiff
path: root/python/runtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/runtests.py')
-rw-r--r--python/runtests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/runtests.py b/python/runtests.py
index bcf650b329..70deaa35d0 100644
--- a/python/runtests.py
+++ b/python/runtests.py
@@ -5,9 +5,11 @@ import os
try:
import _clippy
except ImportError:
- sys.stderr.write('''these tests need to be run with the _clippy C extension
+ sys.stderr.write(
+ """these tests need to be run with the _clippy C extension
module available. Try running "clippy runtests.py ...".
-''')
+"""
+ )
sys.exit(1)
os.chdir(os.path.dirname(os.path.abspath(__file__)))