##// END OF EJS Templates
py3: use absolute_import in test-hgweb-no-path-info.t
timeless -
r28857:9f67cf7c default
parent child Browse files
Show More
@@ -15,9 +15,14 b' should be used from d74fc8dec2b4 onward '
15 summary: test
15 summary: test
16
16
17 $ cat > request.py <<EOF
17 $ cat > request.py <<EOF
18 > from mercurial.hgweb import hgweb, hgwebdir
18 > from __future__ import absolute_import
19 > import os
20 > import sys
19 > from StringIO import StringIO
21 > from StringIO import StringIO
20 > import os, sys
22 > from mercurial.hgweb import (
23 > hgweb,
24 > hgwebdir,
25 > )
21 >
26 >
22 > errors = StringIO()
27 > errors = StringIO()
23 > input = StringIO()
28 > input = StringIO()
General Comments 0
You need to be logged in to leave comments. Login now