summaryrefslogtreecommitdiff
path: root/tests/run.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-05-15 11:15:20 +0200
committerGeorg Brandl <georg@python.org>2011-05-15 11:15:20 +0200
commitb89dc43f76adb5af0c06672bf093747f04cc2f0f (patch)
tree1cbbc7e4d2e9ae914799a29c9cdb74b853e59740 /tests/run.py
parent167e94f3bf167491b6b41e77ee08793226131bb9 (diff)
downloadsphinx-b89dc43f76adb5af0c06672bf093747f04cc2f0f.tar.gz
Cleanup after pull from https://bitbucket.org/timmartin/sphinx
Diffstat (limited to 'tests/run.py')
-rwxr-xr-xtests/run.py8
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()