Only hg repositories override [paths], not simple directories (fixes issue510)
authorThomas Arendsen Hein <thomas@intevation.de>
Wed, 14 Mar 2007 22:38:40 +0100
changeset 4212 76d541c6f3c0
parent 4208 f80cf8b7bbd9
child 4213 0a95d0e83b4c
child 4220 ea976f5f3fa3
Only hg repositories override [paths], not simple directories (fixes issue510)
mercurial/ui.py
--- a/mercurial/ui.py
+++ b/mercurial/ui.py
@@ -362,7 +362,7 @@ class ui(object):
 
     def expandpath(self, loc, default=None):
         """Return repository location relative to cwd or from [paths]"""
-        if "://" in loc or os.path.isdir(loc):
+        if "://" in loc or os.path.isdir(os.path.join(loc, '.hg')):
             return loc
 
         path = self.config("paths", loc)