Skip to content
Snippets Groups Projects
Commit e3674c2a authored by Gregory Szorc's avatar Gregory Szorc
Browse files

py3: convert __doc__ to bytes

Differential Revision: https://phab.mercurial-scm.org/D2142
parent 0fb0c304
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,7 @@
ui.write('\n')
for name, func in sorted(views.items()):
ui.write(('%s\n') % func.__doc__)
ui.write(('%s\n') % pycompat.sysbytes(func.__doc__))
ui.write('\n')
raise error.Abort(_('no view requested'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment