File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
Trac's testing framework isn't well suited for plugins, so we NIH'd a bit.
10
10
"""
11
+ from __future__ import print_function
11
12
12
13
import argparse
13
14
import BaseHTTPServer
@@ -2175,8 +2176,8 @@ def get_parser():
2175
2176
COVERAGE_BIN = os .path .join (options .virtualenv , 'bin' , COVERAGE_BIN )
2176
2177
2177
2178
TESTDIR = tempfile .mkdtemp (prefix = 'trac-github-test-' )
2178
- print "Starting tests using temporary directory %r" % TESTDIR
2179
- print "Using git version %s" % git_check_output ('--version' ).strip ()
2179
+ print ( "Starting tests using temporary directory %r" % TESTDIR )
2180
+ print ( "Using git version %s" % git_check_output ('--version' ).strip () )
2180
2181
2181
2182
try :
2182
2183
test_program = unittest .main (argv = [sys .argv [0 ]] + unittest_argv , exit = False )
You can’t perform that action at this time.
0 commit comments