Skip to content

Commit

Permalink
Update server.py
Browse files Browse the repository at this point in the history
  • Loading branch information
itsliamdowd authored Jun 6, 2022
1 parent c3ee83b commit de54779
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def loadpage():
print(month)
day = request.args.get('day')
print(day)
#url = "https://web.archive.org/web/" + str(year) + "07" + "11" + "043326if_/" + url
url = "https://web.archive.org/web/" + str(year) + str(month) + str(day) + "043326if_/" + url
print(url)
return render_template("loadpage.html", url=url)
Expand All @@ -28,4 +27,4 @@ def home():
return render_template("home.html")

if __name__ == "__main__":
app.run(debug=False)
app.run(debug=False)

0 comments on commit de54779

Please sign in to comment.