branch | stable |
changeset 13231 | b335882c2f21 |
parent 13192 | 4d03707916d3 |
child 13234 | 0935ff767285 |
child 13314 | 8dc488dfcdb4 |
13230:827a1cc127bf | 13231:b335882c2f21 |
---|---|
549 for sect in ('auth', 'http_proxy'): |
549 for sect in ('auth', 'http_proxy'): |
550 for key, val in src.configitems(sect): |
550 for key, val in src.configitems(sect): |
551 dst.setconfig(sect, key, val) |
551 dst.setconfig(sect, key, val) |
552 v = src.config('web', 'cacerts') |
552 v = src.config('web', 'cacerts') |
553 if v: |
553 if v: |
554 dst.setconfig('web', 'cacerts', v) |
554 dst.setconfig('web', 'cacerts', util.expandpath(v)) |
555 |
555 |
556 return dst |
556 return dst |