# HG changeset patch # User Pulkit Goyal # Date 1548800431 -19800 # Node ID 210a999bd66846b6eb980eb0915f3846e2aced47 # Parent 2f7408b7d247582479ee152181ffb13ac102f6cf montone: fix addition to list by using .append() instead of '+' Differential Revision: https://phab.mercurial-scm.org/D5739 diff -r 2f7408b7d247 -r 210a999bd668 hgext/convert/monotone.py --- a/hgext/convert/monotone.py Wed Jan 30 17:04:26 2019 -0500 +++ b/hgext/convert/monotone.py Wed Jan 30 03:50:31 2019 +0530 @@ -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)