Fixed error in closing parantheses

This commit is contained in:
2022-06-27 15:17:17 +02:00
parent 05e833296b
commit 420be002c9

View File

@@ -53,7 +53,7 @@ else:
st = datetime.datetime.now()
for i, memory in enumerate(memories):
print("{}: Time Elapsed: {}. Getting URL for date {}:".format(i + 1, datetime.datetime.now() - st), memory["Date"], end=" ")
print("{}: Time Elapsed: {}. Getting URL for date {}:".format(i + 1, datetime.datetime.now() - st, memory["Date"]), end=" ")
try:
link = requests.post(memory["Download Link"]).text
print("Success")