# HG changeset patch # User Martin Geisler # Date 1339503498 -7200 # Node ID f635c476fa3f65b0834a9f82bbc8fd8b75f27159 # Parent 0c9c41e53f1a6996669e4db25c80d834f43a742a serve: lowercase "no repo here" message diff -r 0c9c41e53f1a -r f635c476fa3f mercurial/commands.py --- a/mercurial/commands.py Tue Jun 12 14:18:18 2012 +0200 +++ b/mercurial/commands.py Tue Jun 12 14:18:18 2012 +0200 @@ -5035,7 +5035,7 @@ def checkrepo(): if repo is None: - raise error.RepoError(_("There is no Mercurial repository here" + raise error.RepoError(_("there is no Mercurial repository here" " (.hg not found)")) if opts["stdio"]: @@ -5066,7 +5066,7 @@ o = opts.get('web_conf') or opts.get('webdir_conf') if not o: if not repo: - raise error.RepoError(_("There is no Mercurial repository" + raise error.RepoError(_("there is no Mercurial repository" " here (.hg not found)")) o = repo.root diff -r 0c9c41e53f1a -r f635c476fa3f tests/test-ssh.t --- a/tests/test-ssh.t Tue Jun 12 14:18:18 2012 +0200 +++ b/tests/test-ssh.t Tue Jun 12 14:18:18 2012 +0200 @@ -21,14 +21,14 @@ repo not found error $ hg clone -e "python \"$TESTDIR/dummyssh\"" ssh://user@dummy/nonexistent local - remote: abort: There is no Mercurial repository here (.hg not found)! + remote: abort: there is no Mercurial repository here (.hg not found)! abort: no suitable response from remote hg! [255] non-existent absolute path $ hg clone -e "python \"$TESTDIR/dummyssh\"" ssh://user@dummy//`pwd`/nonexistent local - remote: abort: There is no Mercurial repository here (.hg not found)! + remote: abort: there is no Mercurial repository here (.hg not found)! abort: no suitable response from remote hg! [255]