Skip to content
forked from BOINC/boinc

Commit

Permalink
tools: fix bug that added extra [''] argument to some deamons in the …
Browse files Browse the repository at this point in the history
…config.xml when a project is first created
  • Loading branch information
TheAspens committed Aug 2, 2019
1 parent a029d66 commit 5e80d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/Boinc/setup_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ def _build_sched_commandlines(self, progname, kwargs):
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:
Expand Down

0 comments on commit 5e80d7f

Please sign in to comment.