Skip to content

Commit

Permalink
Merge pull request #115 from akamhy/akamhy-patch-1
Browse files Browse the repository at this point in the history
do not use f-strings in setup.py
  • Loading branch information
akamhy authored Jan 25, 2022
2 parents 5529674 + 8510210 commit 15c7244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

version = str(about["__version__"])

download_url = f"https://github.com/akamhy/waybackpy/archive/{version}.tar.gz"
download_url = "https://github.com/akamhy/waybackpy/archive/{version}.tar.gz".format(version=version)

setup(
name=about["__title__"],
Expand Down

0 comments on commit 15c7244

Please sign in to comment.