convert: fix two %r output formats with pycompat.bytestr() wrapping
Differential Revision: https://phab.mercurial-scm.org/D2529
--- a/hgext/convert/filemap.py Thu Mar 01 17:48:06 2018 -0500
+++ b/hgext/convert/filemap.py Thu Mar 01 18:13:50 2018 -0500
@@ -11,6 +11,7 @@
from mercurial.i18n import _
from mercurial import (
error,
+ pycompat,
)
from . import common
SKIPREV = common.SKIPREV
@@ -67,7 +68,8 @@
name.endswith('/') or
'//' in name):
self.ui.warn(_('%s:%d: superfluous / in %s %r\n') %
- (lex.infile, lex.lineno, listname, name))
+ (lex.infile, lex.lineno, listname,
+ pycompat.bytestr(name)))
return 1
return 0
lex = common.shlexer(
@@ -92,7 +94,7 @@
errs += self.parse(normalize(lex.get_token()))
else:
self.ui.warn(_('%s:%d: unknown directive %r\n') %
- (lex.infile, lex.lineno, cmd))
+ (lex.infile, lex.lineno, pycompat.bytestr(cmd)))
errs += 1
cmd = lex.get_token()
return errs