Details
Details
Diff Detail
Diff Detail
- Repository
 - rHG Mercurial
 - Lint
 Lint Skipped - Unit
 Unit Tests Skipped 
Event Timeline
Comment Actions
command.append('l') for arg in args:
- command += "%d:%s" % (len(arg), arg)
 + command += pycompat.bytestr("%d:%s" % (len(arg), arg))
It's okay, but I think the original code would mean to do command.append(...).
command.append('e') command = ''.join(command)