##// END OF EJS Templates
remoteui: copy http_proxy settings...
Yuya Nishihara -
r10953:f1250e2e stable
parent child Browse files
Show More
@@ -129,9 +129,10 b' def remoteui(src, opts):'
129 if r:
129 if r:
130 dst.setconfig('bundle', 'mainreporoot', r)
130 dst.setconfig('bundle', 'mainreporoot', r)
131
131
132 # copy auth section settings
132 # copy auth and http_proxy section settings
133 for key, val in src.configitems('auth'):
133 for sect in ('auth', 'http_proxy'):
134 dst.setconfig('auth', key, val)
134 for key, val in src.configitems(sect):
135 dst.setconfig(sect, key, val)
135
136
136 return dst
137 return dst
137
138
General Comments 0
You need to be logged in to leave comments. Login now