##// END OF EJS Templates
tests: fix up test-bad-extension.t's inline extension...
Augie Fackler -
r40222:9cbc2579 default
parent child Browse files
Show More
@@ -67,7 +67,7 b' names of extensions failed to load can b'
67 67 > command = registrar.command(cmdtable)
68 68 > @command(b'showbadexts', norepo=True)
69 69 > def showbadexts(ui, *pats, **opts):
70 > ui.write('BADEXTS: %s\n' % ' '.join(sorted(extensions.notloaded())))
70 > ui.write(b'BADEXTS: %s\n' % b' '.join(sorted(extensions.notloaded())))
71 71 > EOF
72 72 $ hg --config extensions.badexts=showbadexts.py showbadexts 2>&1 | grep '^BADEXTS'
73 73 BADEXTS: badext badext2
General Comments 0
You need to be logged in to leave comments. Login now