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:
Kevin Reed 2019-08-02 16:30:28 -05:00
parent a029d664e8
commit 5e80d7fcbc
1 changed files with 1 additions and 1 deletions

View File

@ -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: