Details
Details
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
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)