Submitter | phabricator |
---|---|
Date | Feb. 1, 2019, 11:31 p.m. |
Message ID | <4cac11eeb148fe284cc83cfb1e906ff9@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/38301/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/convert/monotone.py b/hgext/convert/monotone.py --- a/hgext/convert/monotone.py +++ b/hgext/convert/monotone.py @@ -102,7 +102,7 @@ command.append('l') for arg in args: - command += "%d:%s" % (len(arg), arg) + command.append("%d:%s" % (len(arg), arg)) command.append('e') command = ''.join(command)