diff options
author | Mark Powers <mark@marks.kitchen> | 2020-09-22 15:56:03 +0000 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2020-09-22 15:56:03 +0000 |
commit | c589248cd48214096bdfcd2c637b23c38f79699f (patch) | |
tree | 6ef51333298a68e0ce5961774d42afdc949a97c8 | |
parent | 3f2e142d2c9b1e46faee988111abaffea946ce6a (diff) |
Fix typo
-rwxr-xr-x | daily-update.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daily-update.py b/daily-update.py index aa30efe..f9c402d 100755 --- a/daily-update.py +++ b/daily-update.py @@ -30,7 +30,7 @@ def get_old_news(): full_url = urls[i] % century_ago name = names[i] if requests.get(full_url).status_code != 404: - news_text += '<a href="%s">%s %s</a>\n' % (full, name, century_ago) + news_text += '<a href="%s">%s %s</a>\n' % (full_url, name, century_ago) return news_text def get_unread_reminders(): |