Mercurial > hg > mercurial-source
changeset 29712:ad2cd2ef25d9
config: use single quotes around command hint
Windows command lines use double quotes to quote arguments with spaces.
This change is in a series to unify around using single quotes around
commands, and double quotes around interior arguments.
author | timeless <timeless@mozdev.org> |
---|---|
date | Thu, 14 Apr 2016 15:18:59 +0000 (2016-04-14) |
parents | 2e58dc022caa |
children | fc1d75e7a98d |
files | mercurial/ui.py tests/test-commit-interactive.t tests/test-committer.t |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -583,7 +583,7 @@ pass if not user: raise error.Abort(_('no username supplied'), - hint=_('use "hg config --edit" ' + hint=_("use 'hg config --edit' " 'to set your username')) if "\n" in user: raise error.Abort(_("username %s contains a newline\n")