Skip to content

Commit

Permalink
make_project: fix bug in creation of schedulers.txt: {url}, not url.
Browse files Browse the repository at this point in the history
Introduced in #01df187
  • Loading branch information
davidpanderson committed Oct 22, 2023
1 parent 1ec8a2a commit 5d7273a
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 @@ -596,7 +596,7 @@ def install_project(self):

content = '''
<!-- <scheduler>{url}</scheduler> -->"
<link rel=\"boinc_scheduler\" href=\"url"\">
<link rel=\"boinc_scheduler\" href=\"{url}"\">
'''.format(url=self.scheduler_url.strip())
f = open(self.dest('html/user', 'schedulers.txt'), 'w')
f.write(content)
Expand Down

0 comments on commit 5d7273a

Please sign in to comment.