Skip to content
Snippets Groups Projects
Commit b757f06193d0 authored by Pulkit Goyal's avatar Pulkit Goyal
Browse files

utility: don't translate commit messages in revselection prompt (issue6016)

Commit messages should not be translated and should be shown the same. I am not
sure if I can add a test for this by creating a commit with non-ascii character
in commit message.
parent da5f7927917c
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,11 @@
=========
8.3.2 - in progress
-------------------
* evolve: not longer attempt to translate revision's descriptions (issue6016)
8.3.1 -- 2018-10-25
-------------------
......
......@@ -161,8 +161,8 @@
promptmsg = customheader + "\n"
for idx, rev in enumerate(revs):
curctx = repo[rev]
revmsg = _("%d: [%s] %s\n" % (idx, curctx,
curctx.description().split("\n")[0]))
revmsg = "%d: [%s] %s\n" % (idx, curctx,
curctx.description().split("\n")[0])
promptmsg += revmsg
promptmsg += _("q: quit the prompt\n")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment