##// END OF EJS Templates
py3: use print as a function in tests/test-hgrc.t...
Pulkit Goyal -
r36478:432b85a4 default
parent child Browse files
Show More
@@ -58,7 +58,7 b' issue1829: wrong indentation'
58 unexpected leading whitespace
58 unexpected leading whitespace
59 [255]
59 [255]
60
60
61 $ $PYTHON -c "print '[foo]\nbar = a\n b\n c \n de\n fg \nbaz = bif cb \n'" \
61 $ $PYTHON -c "from __future__ import print_function; print('[foo]\nbar = a\n b\n c \n de\n fg \nbaz = bif cb \n')" \
62 > > $HGRC
62 > > $HGRC
63 $ hg showconfig foo
63 $ hg showconfig foo
64 foo.bar=a\nb\nc\nde\nfg
64 foo.bar=a\nb\nc\nde\nfg
General Comments 0
You need to be logged in to leave comments. Login now