# HG changeset patch # User Thomas Arendsen Hein # Date 1134659963 -3600 # Node ID a679a364436ada124b787f9d65932c74fceed0fa # Parent 851bc33ff545cfe182239f2c3369d462821610df Better error message (without /.hg appended) when repository is not found. This makes the error for missing default or default-push more readable. diff -r 851bc33ff545 -r a679a364436a mercurial/localrepo.py --- a/mercurial/localrepo.py Thu Dec 15 15:40:14 2005 +0100 +++ b/mercurial/localrepo.py Thu Dec 15 16:19:23 2005 +0100 @@ -24,7 +24,7 @@ self.path = os.path.join(path, ".hg") if not create and not os.path.isdir(self.path): - raise repo.RepoError(_("repository %s not found") % self.path) + raise repo.RepoError(_("repository %s not found") % path) self.root = os.path.abspath(path) self.ui = ui diff -r 851bc33ff545 -r a679a364436a tests/test-clone-failure.out --- a/tests/test-clone-failure.out Thu Dec 15 15:40:14 2005 +0100 +++ b/tests/test-clone-failure.out Thu Dec 15 16:19:23 2005 +0100 @@ -1,12 +1,12 @@ -abort: repository a/.hg not found! +abort: repository a not found! 255 requesting all changes abort: error: Connection refused 255 -abort: repository a/.hg not found! +abort: repository a not found! 255 abort: destination '../a' already exists 1 -abort: repository a/.hg not found! +abort: repository a not found! 255 abort: destination 'q' already exists