mercurial/localrepo.py
changeset 4555 1843d31bfdbf
parent 4541 3f4555babe74
child 4556 30bc57094bfc
--- a/mercurial/localrepo.py	Mon Jun 11 21:09:24 2007 -0500
+++ b/mercurial/localrepo.py	Mon Jun 11 21:09:24 2007 -0500
@@ -29,12 +29,7 @@
         self.transhandle = None
     def __init__(self, parentui, path=None, create=0):
         repo.repository.__init__(self)
-        if not path:
-            path = findrepo()
-            if not path:
-                raise repo.RepoError(_("There is no Mercurial repository"
-                                       " here (.hg not found)"))
-
+        self.path = path
         self.root = os.path.realpath(path)
         self.path = os.path.join(self.root, ".hg")
         self.origroot = path