# HG changeset patch # User Thomas Arendsen Hein # Date 1173908320 -3600 # Node ID 76d541c6f3c0ddc926825276af02fbf7192c774a # Parent f80cf8b7bbd97464919df9a305e6a890a0e962aa Only hg repositories override [paths], not simple directories (fixes issue510) diff -r f80cf8b7bbd9 -r 76d541c6f3c0 mercurial/ui.py --- a/mercurial/ui.py Tue Mar 13 18:53:23 2007 -0500 +++ b/mercurial/ui.py Wed Mar 14 22:38:40 2007 +0100 @@ -362,7 +362,7 @@ 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)