##// END OF EJS Templates
py3: use '%d' instead of '%s' for integers...
Pulkit Goyal -
r39777:7303ab86 default
parent child Browse files
Show More
@@ -4878,10 +4878,10 b' def revert(ui, repo, *pats, **opts):'
4878 4878 if node != parent:
4879 4879 if dirty:
4880 4880 hint = _("uncommitted changes, use --all to discard all"
4881 " changes, or 'hg update %s' to update") % ctx.rev()
4881 " changes, or 'hg update %d' to update") % ctx.rev()
4882 4882 else:
4883 4883 hint = _("use --all to revert all files,"
4884 " or 'hg update %s' to update") % ctx.rev()
4884 " or 'hg update %d' to update") % ctx.rev()
4885 4885 elif dirty:
4886 4886 hint = _("uncommitted changes, use --all to discard all changes")
4887 4887 else:
General Comments 0
You need to be logged in to leave comments. Login now