Skip to content

Commit

Permalink
Merge pull request #6 from INM-6/fix_slideshow_affinity_error
Browse files Browse the repository at this point in the history
Fix missing quotes in slideshow.py
  • Loading branch information
jasperalbers authored Sep 16, 2021
2 parents affa365 + ee956f4 commit 5fbb9b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slideshow/slideshow.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def display_plot(timer_hash, plot_path, attributes):
f"find . -name '*{timer_hash}.csv'").read().strip()
for attribute in attributes:
value = os.popen(
f'git annex metadata {file_path} '
f'git annex metadata "{file_path}" '
+ f'--get {attribute}').read().strip()
display_list += f' <li>{attribute}: {value}</li>\n'
display_list += '</ul></center>'
Expand Down

0 comments on commit 5fbb9b2

Please sign in to comment.