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 88
99Trac's testing framework isn't well suited for plugins, so we NIH'd a bit.
1010"""
11+ from __future__ import print_function
1112
1213import argparse
1314import BaseHTTPServer
@@ -2175,8 +2176,8 @@ def get_parser():
21752176 COVERAGE_BIN = os .path .join (options .virtualenv , 'bin' , COVERAGE_BIN )
21762177
21772178 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 () )
21802181
21812182 try :
21822183 test_program = unittest .main (argv = [sys .argv [0 ]] + unittest_argv , exit = False )
You can’t perform that action at this time.
0 commit comments