mercurial/hg.py
changeset 13234 0935ff767285
parent 13193 3bbbde6f3e9f
parent 13231 b335882c2f21
child 13315 0d1dca7d2a04
equal deleted inserted replaced
13229:f3058dd05281 13234:0935ff767285
   547     for sect in ('auth', 'http_proxy'):
   547     for sect in ('auth', 'http_proxy'):
   548         for key, val in src.configitems(sect):
   548         for key, val in src.configitems(sect):
   549             dst.setconfig(sect, key, val)
   549             dst.setconfig(sect, key, val)
   550     v = src.config('web', 'cacerts')
   550     v = src.config('web', 'cacerts')
   551     if v:
   551     if v:
   552         dst.setconfig('web', 'cacerts', v)
   552         dst.setconfig('web', 'cacerts', util.expandpath(v))
   553 
   553 
   554     return dst
   554     return dst