##// END OF EJS Templates
py3: convert error instances to bytes using pycompat.bytestr()...
Pulkit Goyal -
r38385:4a6d01b4 default
parent child Browse files
Show More
@@ -123,7 +123,7 b' def convertsource(ui, path, type, revs):'
123 exceptions.append(inst)
123 exceptions.append(inst)
124 if not ui.quiet:
124 if not ui.quiet:
125 for inst in exceptions:
125 for inst in exceptions:
126 ui.write("%s\n" % inst)
126 ui.write("%s\n" % pycompat.bytestr(inst))
127 raise error.Abort(_('%s: missing or unsupported repository') % path)
127 raise error.Abort(_('%s: missing or unsupported repository') % path)
128
128
129 def convertsink(ui, path, type):
129 def convertsink(ui, path, type):
General Comments 0
You need to be logged in to leave comments. Login now