Don't expand empty [paths] so later interpolation can do the right thing.
authorThomas Arendsen Hein <thomas@intevation.de>
Sun, 12 Mar 2006 20:34:09 +0100
changeset 1921 acce3f7e1779
parent 1894 4c53aaf2d153
child 1922 6d50d6189269
Don't expand empty [paths] so later interpolation can do the right thing. Example: [paths] default = default-push = %(default)s
mercurial/ui.py
--- a/mercurial/ui.py
+++ b/mercurial/ui.py
@@ -60,7 +60,7 @@ class ui(object):
         if root is None:
             root = os.path.expanduser('~')
         for name, path in self.configitems("paths"):
-            if path.find("://") == -1 and not os.path.isabs(path):
+            if path and path.find("://") == -1 and not os.path.isabs(path):
                 self.cdata.set("paths", name, os.path.join(root, path))
 
     def setconfig(self, section, name, val):