diff options
| author | Georg Brandl <georg@python.org> | 2011-05-15 11:15:20 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2011-05-15 11:15:20 +0200 |
| commit | b89dc43f76adb5af0c06672bf093747f04cc2f0f (patch) | |
| tree | 1cbbc7e4d2e9ae914799a29c9cdb74b853e59740 /tests/run.py | |
| parent | 167e94f3bf167491b6b41e77ee08793226131bb9 (diff) | |
| download | sphinx-b89dc43f76adb5af0c06672bf093747f04cc2f0f.tar.gz | |
Cleanup after pull from https://bitbucket.org/timmartin/sphinx
Diffstat (limited to 'tests/run.py')
| -rwxr-xr-x | tests/run.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/run.py b/tests/run.py index efc65724..7d51c071 100755 --- a/tests/run.py +++ b/tests/run.py @@ -29,20 +29,20 @@ sys.path.insert(0, path.join(path.dirname(__file__), path.pardir)) try: import nose except ImportError: - print("The nose package is needed to run the Sphinx test suite.") + print('The nose package is needed to run the Sphinx test suite.') sys.exit(1) try: import docutils except ImportError: - print("Sphinx requires the docutils package to be installed") + print('Sphinx requires the docutils package to be installed.') sys.exit(1) try: import jinja2 except ImportError: - print("Sphinx requires the jinja2 package to be installed") + print('Sphinx requires the jinja2 package to be installed.') sys.exit(1) -print("Running Sphinx test suite...") +print('Running Sphinx test suite...') nose.main() |
