Skip to content

Commit

Permalink
Fix error that sent tuple instead of string to the final file writer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Clark committed Apr 11, 2024
1 parent 3118335 commit 4c3b8e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/scripts/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def deploy():
# Massage the paths appropriately
for s in input:
s = (
s.replace("/assets/", f"/aria/{distdir}/assets/"),
s.replace("/favicon.png", f"/aria/{distdir}/favicon.png")
s.replace("/assets/", f"/aria/{distdir}/assets/")
.replace("/favicon.png", f"/aria/{distdir}/favicon.png")
)
output.write(s)

Expand Down

0 comments on commit 4c3b8e7

Please sign in to comment.