##// END OF EJS Templates
url: expand vars in all [auth] settings (issue2328)
Martin Geisler -
r11833:7c9beccb default
parent child Browse files
Show More
@@ -156,8 +156,7 b' class passwordmgr(urllib2.HTTPPasswordMg'
156 continue
156 continue
157 group, setting = key.split('.', 1)
157 group, setting = key.split('.', 1)
158 gdict = config.setdefault(group, dict())
158 gdict = config.setdefault(group, dict())
159 if setting in ('cert', 'key'):
159 val = util.expandpath(val)
160 val = util.expandpath(val)
161 gdict[setting] = val
160 gdict[setting] = val
162
161
163 # Find the best match
162 # Find the best match
General Comments 0
You need to be logged in to leave comments. Login now