##// END OF EJS Templates
py3: avoid using %r format on bytes...
Manuel Jacob -
r45497:7a463053 stable
parent child Browse files
Show More
@@ -535,7 +535,9 b' class svn_source(converter_source):'
535 % (name, path)
535 % (name, path)
536 )
536 )
537 return None
537 return None
538 self.ui.note(_(b'found %s at %r\n') % (name, path))
538 self.ui.note(
539 _(b'found %s at %r\n') % (name, pycompat.bytestr(path))
540 )
539 return path
541 return path
540
542
541 rev = optrev(self.last_changed)
543 rev = optrev(self.last_changed)
@@ -1208,7 +1210,10 b' class svn_source(converter_source):'
1208 return relative
1210 return relative
1209
1211
1210 # The path is outside our tracked tree...
1212 # The path is outside our tracked tree...
1211 self.ui.debug(b'%r is not under %r, ignoring\n' % (path, module))
1213 self.ui.debug(
1214 b'%r is not under %r, ignoring\n'
1215 % (pycompat.bytestr(path), pycompat.bytestr(module))
1216 )
1212 return None
1217 return None
1213
1218
1214 def _checkpath(self, path, revnum, module=None):
1219 def _checkpath(self, path, revnum, module=None):
General Comments 0
You need to be logged in to leave comments. Login now