##// END OF EJS Templates
py3: use '%d' instead of '%s' for integers...
Pulkit Goyal -
r32895:05c213cd default
parent child Browse files
Show More
@@ -1174,11 +1174,11 b' class localrepository(object):'
1174 oldtip = oldlen - 1
1174 oldtip = oldlen - 1
1175
1175
1176 if detail and ui.verbose:
1176 if detail and ui.verbose:
1177 msg = (_('repository tip rolled back to revision %s'
1177 msg = (_('repository tip rolled back to revision %d'
1178 ' (undo %s: %s)\n')
1178 ' (undo %s: %s)\n')
1179 % (oldtip, desc, detail))
1179 % (oldtip, desc, detail))
1180 else:
1180 else:
1181 msg = (_('repository tip rolled back to revision %s'
1181 msg = (_('repository tip rolled back to revision %d'
1182 ' (undo %s)\n')
1182 ' (undo %s)\n')
1183 % (oldtip, desc))
1183 % (oldtip, desc))
1184 except IOError:
1184 except IOError:
General Comments 0
You need to be logged in to leave comments. Login now