##// END OF EJS Templates
py3: avoid another b''.format() in chistedit...
Martin von Zweigbergk -
r43688:85ab79bc stable
parent child Browse files
Show More
@@ -1322,7 +1322,7 b' def makecommands(rules):'
1322 our list of rules"""
1322 our list of rules"""
1323 commands = []
1323 commands = []
1324 for rules in rules:
1324 for rules in rules:
1325 commands.append(b"{0} {1}\n".format(rules.action, rules.ctx))
1325 commands.append(b'%s %s\n' % (rules.action, rules.ctx))
1326 return commands
1326 return commands
1327
1327
1328
1328
General Comments 0
You need to be logged in to leave comments. Login now