diff options
Diffstat (limited to 'tests/run.py')
-rw-r--r-- | tests/run.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/run.py b/tests/run.py index 457a97a1..bd285c2b 100644 --- a/tests/run.py +++ b/tests/run.py @@ -76,8 +76,9 @@ def run_tests(with_coverage=False): WIDTH = 70 - print >>sys.stderr, ('Pygments Test Suite running %s, stand by...' % - (with_coverage and "with coverage analysis" or "")).center(WIDTH) + print >>sys.stderr, \ + ('Pygments Test Suite running %s, stand by...' % + (with_coverage and "with coverage analysis" or "")).center(WIDTH) print >>sys.stderr, ('(using Python %s)' % sys.version.split()[0]).center(WIDTH) print >>sys.stderr, '='*WIDTH |