Mercurial > public > mercurial-scm > hg-stable
diff mercurial/dispatch.py @ 12067:a4fbbe0fbc38 stable
Lowercase error messages
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sun, 29 Aug 2010 22:37:58 +0200 |
parents | 18e1e7520b67 |
children | fddacca3202e |
line wrap: on
line diff
--- a/mercurial/dispatch.py Thu Aug 26 23:11:03 2010 +0200 +++ b/mercurial/dispatch.py Sun Aug 29 22:37:58 2010 +0200 @@ -424,9 +424,9 @@ cmd, func, args, options, cmdoptions = _parse(lui, args) if options["config"]: - raise util.Abort(_("Option --config may not be abbreviated!")) + raise util.Abort(_("option --config may not be abbreviated!")) if options["cwd"]: - raise util.Abort(_("Option --cwd may not be abbreviated!")) + raise util.Abort(_("option --cwd may not be abbreviated!")) if options["repository"]: raise util.Abort(_( "Option -R has to be separated from other options (e.g. not -qR) "