ui: config path relative to repo root
authorSimon Heimberg <simohe@besonet.ch>
Sat, 23 Jul 2011 06:09:14 +0200
changeset 14924 545e00279670
parent 14923 351624f8f523
child 14925 ab545a15d807
ui: config path relative to repo root
mercurial/ui.py
--- a/mercurial/ui.py	Sat Jul 23 06:08:52 2011 +0200
+++ b/mercurial/ui.py	Sat Jul 23 06:09:14 2011 +0200
@@ -164,7 +164,7 @@
         return value
 
     def configpath(self, section, name, default=None, untrusted=False):
-        'get a path config item, expanded relative to config file'
+        'get a path config item, expanded relative to repo root or config file'
         v = self.config(section, name, default, untrusted)
         if v is None:
             return None