##// END OF EJS Templates
share: use dict literal instead of dict(key=value)...
Yuya Nishihara -
r33021:24c0a9a7 default
parent child Browse files
Show More
@@ -132,10 +132,10 b' def clone(orig, ui, source, *args, **opt'
132 if pool:
132 if pool:
133 pool = util.expandpath(pool)
133 pool = util.expandpath(pool)
134
134
135 opts[r'shareopts'] = dict(
135 opts[r'shareopts'] = {
136 pool=pool,
136 'pool': pool,
137 mode=ui.config('share', 'poolnaming', 'identity'),
137 'mode': ui.config('share', 'poolnaming', 'identity'),
138 )
138 }
139
139
140 return orig(ui, source, *args, **opts)
140 return orig(ui, source, *args, **opts)
141
141
General Comments 0
You need to be logged in to leave comments. Login now