fetch: 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.
This commit is contained in:
timeless 2016-04-14 15:20:11 +00:00
parent ce70666e78
commit 0dd163b523
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ def fetch(ui, repo, source='default', **opts):
branchnode = None
if parent != branchnode:
raise error.Abort(_('working directory not at branch tip'),
hint=_('use "hg update" to check out branch tip'))
hint=_("use 'hg update' to check out branch tip"))
wlock = lock = None
try:

View File

@ -339,7 +339,7 @@ pull in change on different branch than dirstate
(branches are permanent and global, did you want a bookmark?)
$ hg -R n2 fetch -m merge n1
abort: working directory not at branch tip
(use "hg update" to check out branch tip)
(use 'hg update' to check out branch tip)
[255]
parent should be 0 (fetch did not update or merge anything)