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