##// END OF EJS Templates
montone: fix addition to list by using .append() instead of '+'...
Pulkit Goyal -
r41566:0a4a3e5c default draft
parent child Browse files
Show More
@@ -102,7 +102,7 b' class monotone_source(common.converter_s'
102
102
103 command.append('l')
103 command.append('l')
104 for arg in args:
104 for arg in args:
105 command += "%d:%s" % (len(arg), arg)
105 command.append("%d:%s" % (len(arg), arg))
106 command.append('e')
106 command.append('e')
107 command = ''.join(command)
107 command = ''.join(command)
108
108
General Comments 0
You need to be logged in to leave comments. Login now