##// END OF EJS Templates
py3: use print as a function in tests/test-hgweb.t...
Pulkit Goyal -
r39464:8466c607 default
parent child Browse files
Show More
@@ -329,7 +329,7 b' stop and restart'
329
329
330 Test the access/error files are opened in append mode
330 Test the access/error files are opened in append mode
331
331
332 $ $PYTHON -c "print len(open('access.log', 'rb').readlines()), 'log lines written'"
332 $ $PYTHON -c "from __future__ import print_function; print(len(open('access.log', 'rb').readlines()), 'log lines written')"
333 14 log lines written
333 14 log lines written
334
334
335 static file
335 static file
General Comments 0
You need to be logged in to leave comments. Login now