##// END OF EJS Templates
py3: fix test-newcgi.t...
Augie Fackler -
r41382:9448b2e4 default
parent child Browse files
Show More
@@ -455,6 +455,7 b' test-narrow-widen.t'
455 455 test-narrow.t
456 456 test-nested-repo.t
457 457 test-newbranch.t
458 test-newcgi.t
458 459 test-newercgi.t
459 460 test-nointerrupt.t
460 461 test-obshistory.t
@@ -18,7 +18,7 b' before d74fc8dec2b4 still work.'
18 18 > from mercurial.hgweb.request import wsgiapplication
19 19 >
20 20 > def make_web_app():
21 > return hgweb("test", "Empty test repository")
21 > return hgweb(b"test", b"Empty test repository")
22 22 >
23 23 > wsgicgi.launch(wsgiapplication(make_web_app))
24 24 > HGWEB
@@ -44,7 +44,7 b' before d74fc8dec2b4 still work.'
44 44 > from mercurial.hgweb.request import wsgiapplication
45 45 >
46 46 > def make_web_app():
47 > return hgwebdir("hgweb.config")
47 > return hgwebdir(b"hgweb.config")
48 48 >
49 49 > wsgicgi.launch(wsgiapplication(make_web_app))
50 50 > HGWEBDIR
General Comments 0
You need to be logged in to leave comments. Login now