mirror of https://github.com/BOINC/boinc.git
tools: fix bug that added extra [''] argument to some deamons in the config.xml when a project is first created
This commit is contained in:
parent
a029d664e8
commit
5e80d7fcbc
|
@ -668,7 +668,7 @@ require valid-user
|
|||
each_app = True
|
||||
else:
|
||||
raise SystemExit("test script error: invalid progname '%s'"%progname)
|
||||
cmdline = build_command_line([''], kwargs)
|
||||
cmdline = build_command_line('', kwargs)
|
||||
if each_app:
|
||||
return [ '-app %s %s'%(av.app.name,cmdline) for av in self.app_versions ]
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue