diff --git a/hgext/gpg.py b/hgext/gpg.py --- a/hgext/gpg.py +++ b/hgext/gpg.py @@ -227,7 +227,7 @@ def sign(ui, repo, *revs, **opts): data = node2txt(repo, n, sigver) sig = mygpg.sign(data) if not sig: - raise util.Abort(_("Error while signing")) + raise util.abort(_("error while signing")) sig = binascii.b2a_base64(sig) sig = sig.replace("\n", "") sigmessage += "%s %s %s\n" % (hexnode, sigver, sig) diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -2083,7 +2083,7 @@ def fold(ui, repo, *files, **opts): if not files: raise util.Abort(_('qfold requires at least one patch name')) if not q.check_toppatch(repo)[0]: - raise util.Abort(_('No patches applied')) + raise util.Abort(_('no patches applied')) q.check_localchanges(repo) message = cmdutil.logmessage(opts) @@ -2110,7 +2110,7 @@ def fold(ui, repo, *files, **opts): pf = q.join(p) (patchsuccess, files, fuzz) = q.patch(repo, pf) if not patchsuccess: - raise util.Abort(_('Error folding patch %s') % p) + raise util.Abort(_('error folding patch %s') % p) patch.updatedir(ui, repo, files) if not message: @@ -2799,7 +2799,7 @@ def mqinit(orig, ui, *args, **kwargs): else: repopath = cmdutil.findrepo(os.getcwd()) if not repopath: - raise util.Abort(_('There is no Mercurial repository here ' + raise util.Abort(_('there is no Mercurial repository here ' '(.hg not found)')) repo = hg.repository(ui, repopath) return qinit(ui, repo, True) diff --git a/hgext/transplant.py b/hgext/transplant.py --- a/hgext/transplant.py +++ b/hgext/transplant.py @@ -234,7 +234,7 @@ class transplanter(object): p2 = node self.log(user, date, message, p1, p2, merge=merge) self.ui.write(str(inst) + '\n') - raise util.Abort(_('Fix up the merge and run ' + raise util.Abort(_('fix up the merge and run ' 'hg transplant --continue')) else: files = None diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -846,7 +846,7 @@ def debugancestor(ui, repo, *args): lookup = r.lookup elif len(args) == 2: if not repo: - raise util.Abort(_("There is no Mercurial repository here " + raise util.Abort(_("there is no Mercurial repository here " "(.hg not found)")) rev1, rev2 = args r = repo.changelog @@ -2105,7 +2105,7 @@ def identify(ui, repo, source=None, """ if not repo and not source: - raise util.Abort(_("There is no Mercurial repository here " + raise util.Abort(_("there is no Mercurial repository here " "(.hg not found)")) hexfunc = ui.debugflag and hex or short diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -198,7 +198,7 @@ class changectx(object): if match(fn): yield fn for fn in sorted(fset): - if match.bad(fn, _('No such file in rev %s') % self) and match(fn): + if match.bad(fn, _('no such file in rev %s') % self) and match(fn): yield fn def sub(self, path): diff --git a/mercurial/dispatch.py b/mercurial/dispatch.py --- a/mercurial/dispatch.py +++ b/mercurial/dispatch.py @@ -424,9 +424,9 @@ def _dispatch(ui, args): 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) " diff --git a/mercurial/hbisect.py b/mercurial/hbisect.py --- a/mercurial/hbisect.py +++ b/mercurial/hbisect.py @@ -63,7 +63,7 @@ def bisect(changelog, state): if not ancestors: # now we're confused if len(state['bad']) == 1 and len(state['good']) == 1: raise util.Abort(_("starting revisions are not directly related")) - raise util.Abort(_("Inconsistent state, %s:%s is good and bad") + raise util.Abort(_("inconsistent state, %s:%s is good and bad") % (badrev, short(bad))) # build children dict diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -1199,7 +1199,7 @@ class localrepository(repo.repository): cg = remote.changegroup(fetch, 'pull') else: if not remote.capable('changegroupsubset'): - raise util.Abort(_("Partial pull cannot be done because " + raise util.Abort(_("partial pull cannot be done because " "other repository doesn't support " "changegroupsubset.")) cg = remote.changegroupsubset(fetch, heads, 'pull') diff --git a/mercurial/patch.py b/mercurial/patch.py --- a/mercurial/patch.py +++ b/mercurial/patch.py @@ -1284,7 +1284,7 @@ def internalpatch(patchobj, ui, strip, c if eolmode is None: eolmode = ui.config('patch', 'eol', 'strict') if eolmode.lower() not in eolmodes: - raise util.Abort(_('Unsupported line endings type: %s') % eolmode) + raise util.Abort(_('unsupported line endings type: %s') % eolmode) eolmode = eolmode.lower() try: diff --git a/tests/test-cat.out b/tests/test-cat.out --- a/tests/test-cat.out +++ b/tests/test-cat.out @@ -4,5 +4,5 @@ 0 0 0 0 -a: No such file in rev 03f6b0774996 +a: no such file in rev 03f6b0774996 1 diff --git a/tests/test-dispatch.out b/tests/test-dispatch.out --- a/tests/test-dispatch.out +++ b/tests/test-dispatch.out @@ -32,6 +32,6 @@ options: use "hg -v help cat" to show global options % [defaults] a -a: No such file in rev 000000000000 +a: no such file in rev 000000000000 % no repo abort: There is no Mercurial repository here (.hg not found)! diff --git a/tests/test-globalopts.out b/tests/test-globalopts.out --- a/tests/test-globalopts.out +++ b/tests/test-globalopts.out @@ -56,8 +56,8 @@ summary: a %% earlygetopt short option without following space 0:b6c483daf290 %% earlygetopt with illegal abbreviations -abort: Option --config may not be abbreviated! -abort: Option --cwd may not be abbreviated! +abort: option --config may not be abbreviated! +abort: option --cwd may not be abbreviated! abort: Option -R has to be separated from other options (e.g. not -qR) and --repository may only be abbreviated as --repo! abort: Option -R has to be separated from other options (e.g. not -qR) and --repository may only be abbreviated as --repo! abort: Option -R has to be separated from other options (e.g. not -qR) and --repository may only be abbreviated as --repo! diff --git a/tests/test-identify.out b/tests/test-identify.out --- a/tests/test-identify.out +++ b/tests/test-identify.out @@ -1,5 +1,5 @@ % no repo -abort: There is no Mercurial repository here (.hg not found) +abort: there is no Mercurial repository here (.hg not found) % create repo adding a % basic id usage diff --git a/tests/test-import-eol.out b/tests/test-import-eol.out --- a/tests/test-import-eol.out +++ b/tests/test-import-eol.out @@ -2,7 +2,7 @@ adding .hgignore adding a % invalid eol applying eol.diff -abort: Unsupported line endings type: LFCR +abort: unsupported line endings type: LFCR % force LF applying eol.diff 'a\nyyyy\ncc\n\nd\ne' diff --git a/tests/test-mq.out b/tests/test-mq.out --- a/tests/test-mq.out +++ b/tests/test-mq.out @@ -99,7 +99,7 @@ B A B A series % init --mq without repo -abort: There is no Mercurial repository here (.hg not found) +abort: there is no Mercurial repository here (.hg not found) % init --mq with repo path ok % init --mq with nonexistent directory diff --git a/tests/test-revert.out b/tests/test-revert.out --- a/tests/test-revert.out +++ b/tests/test-revert.out @@ -37,7 +37,7 @@ no changes needed to a %% should say file not managed file not managed: q %% should say file not found -notfound: No such file in rev 095eacd0c0d7 +notfound: no such file in rev 095eacd0c0d7 A z ? e.orig %% should add a, remove d, forget z diff --git a/tests/test-transplant.out b/tests/test-transplant.out --- a/tests/test-transplant.out +++ b/tests/test-transplant.out @@ -112,14 +112,14 @@ patching file foo Hunk #1 FAILED at 0 1 out of 1 hunks FAILED -- saving rejects to file foo.rej patch failed to apply -abort: Fix up the merge and run hg transplant --continue +abort: fix up the merge and run hg transplant --continue 1 files updated, 0 files merged, 0 files removed, 0 files unresolved applying a1e30dd1b8e7 patching file foo Hunk #1 FAILED at 0 1 out of 1 hunks FAILED -- saving rejects to file foo.rej patch failed to apply -abort: Fix up the merge and run hg transplant --continue +abort: fix up the merge and run hg transplant --continue a1e30dd1b8e7 transplanted as f1563cf27039 skipping already applied revision 1:a1e30dd1b8e7 applying 1739ac5f6139 @@ -166,7 +166,7 @@ adding test-filter created new head file b1 already exists 1 out of 1 hunks FAILED -- saving rejects to file b1.rej -abort: Fix up the merge and run hg transplant --continue +abort: fix up the merge and run hg transplant --continue filtering applying 348b36d0b6a5 patch failed to apply