##// END OF EJS Templates
url: expand path in auth filenames
Benoit Allard -
r10794:1148a968 stable
parent child Browse files
Show More
@@ -145,6 +145,8 b' class passwordmgr(urllib2.HTTPPasswordMg'
145 continue
145 continue
146 group, setting = key.split('.', 1)
146 group, setting = key.split('.', 1)
147 gdict = config.setdefault(group, dict())
147 gdict = config.setdefault(group, dict())
148 if setting in ('cert', 'key'):
149 val = util.expandpath(val)
148 gdict[setting] = val
150 gdict[setting] = val
149
151
150 # Find the best match
152 # Find the best match
General Comments 0
You need to be logged in to leave comments. Login now