##// END OF EJS Templates
py3: use '%d' for integers instead of '%s'...
Pulkit Goyal -
r40261:47480979 default
parent child Browse files
Show More
@@ -102,7 +102,7 b' class monotone_source(common.converter_s'
102 102
103 103 command.append('l')
104 104 for arg in args:
105 command += "%s:%s" % (len(arg), arg)
105 command += "%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