Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 24364:135b23868f45
commands: replace "working copy" with "working directory" in help/messages
"working directory" is the standard term, we should use it consistently.
But I didn't touch the hint, "run 'hg update' to get a working copy", because
"get a working directory" sounds a bit odd.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Tue, 17 Mar 2015 22:47:08 +0900 |
parents | 521fe8287dd5 |
children | 8c445d8a915b |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Tue Mar 17 22:21:09 2015 -0400 +++ b/mercurial/cmdutil.py Tue Mar 17 22:47:08 2015 +0900 @@ -588,7 +588,7 @@ srcexists = True except IOError, inst: if inst.errno == errno.ENOENT: - ui.warn(_('%s: deleted in working copy\n') % relsrc) + ui.warn(_('%s: deleted in working directory\n') % relsrc) srcexists = False else: ui.warn(_('%s: cannot copy - %s\n') %