File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -143,11 +143,10 @@ def buildProject(args):
143
143
if target :
144
144
argv .extend (['-p' , target ])
145
145
for wrapper in scripts :
146
- argv .append (['-m' , wrapper ])
146
+ argv .extend (['-m' , wrapper ])
147
147
148
148
manifest = os .path .join (project_data_path , name , 'MANIFEST' );
149
- argv .append ('--manifest' )
150
- argv .append (manifest )
149
+ argv .extend (['--manifest' , manifest ])
151
150
152
151
template = os .path .join (project_data_path , name , 'MANIFEST.in' )
153
152
with open (template , 'w' ) as fp :
@@ -257,16 +256,14 @@ def newLicense(args):
257
256
258
257
try :
259
258
value = args .pop ('hdinfo' )
260
- argv .append ('-B' )
261
- argv .append (value )
259
+ argv .extend (['-B' , value ])
262
260
title += 'Bind to %s.' % value
263
261
except KeyError :
264
262
pass
265
263
266
264
try :
267
265
value = args .pop ('expired' )
268
- argv .append ('-e' )
269
- argv .append (value )
266
+ argv .extend (['-e' , value ])
270
267
title += 'Expired on %s.' % value
271
268
except KeyError :
272
269
pass
You can’t perform that action at this time.
0 commit comments