##// END OF EJS Templates
transaction: tr._names are actually bytes, use byte string to join them...
av6 -
r51343:392e2f31 default
parent child Browse files
Show More
@@ -314,7 +314,7 b' class transaction(util.transactional):'
314 314 self._abortcallback = {}
315 315
316 316 def __repr__(self):
317 name = '/'.join(self._names)
317 name = b'/'.join(self._names)
318 318 return '<transaction name=%s, count=%d, usages=%d>' % (
319 319 name,
320 320 self._count,
General Comments 0
You need to be logged in to leave comments. Login now