##// END OF EJS Templates
py3: use print as a function in tests/test-subrepo-svn.t...
Pulkit Goyal -
r39759:5495ceab default
parent child Browse files
Show More
@@ -247,7 +247,7 b' debugsub in clone'
247 247
248 248 verify subrepo is contained within the repo directory
249 249
250 $ "$PYTHON" -c "import os.path; print os.path.exists('s')"
250 $ "$PYTHON" -c "from __future__ import print_function; import os.path; print(os.path.exists('s'))"
251 251 True
252 252
253 253 update to nullrev (must delete the subrepo)
General Comments 0
You need to be logged in to leave comments. Login now