diff options
Diffstat (limited to 'python/runtests.py')
| -rw-r--r-- | python/runtests.py | 6 |
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__))) |
