comparison 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
comparison
equal deleted inserted replaced
12056:85439f43749f 12067:a4fbbe0fbc38
422 422
423 fullargs = args 423 fullargs = args
424 cmd, func, args, options, cmdoptions = _parse(lui, args) 424 cmd, func, args, options, cmdoptions = _parse(lui, args)
425 425
426 if options["config"]: 426 if options["config"]:
427 raise util.Abort(_("Option --config may not be abbreviated!")) 427 raise util.Abort(_("option --config may not be abbreviated!"))
428 if options["cwd"]: 428 if options["cwd"]:
429 raise util.Abort(_("Option --cwd may not be abbreviated!")) 429 raise util.Abort(_("option --cwd may not be abbreviated!"))
430 if options["repository"]: 430 if options["repository"]:
431 raise util.Abort(_( 431 raise util.Abort(_(
432 "Option -R has to be separated from other options (e.g. not -qR) " 432 "Option -R has to be separated from other options (e.g. not -qR) "
433 "and --repository may only be abbreviated as --repo!")) 433 "and --repository may only be abbreviated as --repo!"))
434 434