Skip to content
Snippets Groups Projects
Commit c032e137 authored by Pulkit Goyal's avatar Pulkit Goyal
Browse files

py3: convert exception to bytes to pass into ui.warn()

Here encoding.strtolocal() is used because exc maybe an IOError which could
contain a valid non-ascii unicode.
parent 49e1e5ac
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@
from .i18n import _
from . import (
demandimport,
encoding,
error,
extensions,
pycompat,
......@@ -97,7 +98,7 @@
(hname, exc.args[0]))
else:
ui.warn(_('error: %s hook raised an exception: '
'%s\n') % (hname, exc))
'%s\n') % (hname, encoding.strtolocal(str(exc))))
if throw:
raise
if not ui.tracebackflag:
......
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