##// END OF EJS Templates
py3: add a missing b'' prefix in test extension for chg...
Martin von Zweigbergk -
r43424:f05d10ef default
parent child Browse files
Show More
@@ -127,7 +127,7 b' chg waits for pager if runcommand raises'
127 > command = registrar.command(cmdtable)
127 > command = registrar.command(cmdtable)
128 > @command(b'crash')
128 > @command(b'crash')
129 > def pagercrash(ui, repo, *pats, **opts):
129 > def pagercrash(ui, repo, *pats, **opts):
130 > ui.write('going to crash\n')
130 > ui.write(b'going to crash\n')
131 > raise Exception('.')
131 > raise Exception('.')
132 > EOF
132 > EOF
133
133
General Comments 0
You need to be logged in to leave comments. Login now