Mercurial > public > mercurial-scm > hg
diff mercurial/dispatch.py @ 18691:4f485bd68f1d
blackbox: do not translate the log messages
User 'timeless' in irc mentioned that having the blackbox be
translated would result in logs that:
- may be mixed language, if multiple users use the same repo
- are not google searchable (since searching for english gives more
results)
- might not be readable by an admin if the employee is using hg in
his native language
And therefore we should log everything in english.
author | Durham Goode <durham@fb.com> |
---|---|
date | Wed, 13 Feb 2013 12:51:30 -0800 |
parents | ddc7268da176 |
children | 633cd0c46e6a |
line wrap: on
line diff
--- a/mercurial/dispatch.py Tue Feb 12 11:36:21 2013 -0600 +++ b/mercurial/dispatch.py Wed Feb 13 12:51:30 2013 -0800 @@ -747,7 +747,7 @@ return ret finally: duration = time.time() - starttime - ui.log("commandfinish", _("%s exited %s after %0.2f seconds\n"), + ui.log("commandfinish", "%s exited %s after %0.2f seconds\n", cmd, ret, duration) if repo and repo != req.repo: repo.close()