Skip to content
Snippets Groups Projects
Commit fe81af15 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

py3: drop b'' while formatting BundleUnknownFeatureError message

parent 15622e72
Branches
Tags
No related merge requests found
......@@ -241,7 +241,7 @@
if val is None:
entries.append(val)
else:
entries.append("%s=%r" % (par, val))
entries.append("%s=%r" % (par, pycompat.maybebytestr(val)))
if entries:
msg = '%s - %s' % (msg, ', '.join(entries))
ValueError.__init__(self, msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment