Define last_seen at the beginning, remove write for nothing in except statement

This commit is contained in:
flyingscorpio@arch-desktop 2020-05-22 10:22:46 +02:00
parent 783f3f7813
commit 233ccc6448

View file

@ -15,12 +15,13 @@ def main() -> None:
last_seen_file_path = os.path.expanduser("~/.cache/arch_linux_news_last_seen")
last_seen = ""
try:
with open(last_seen_file_path, "r") as last_seen_file:
last_seen = last_seen_file.read().strip()
except FileNotFoundError:
with open(last_seen_file_path, "w") as last_seen_file:
last_seen_file.write("")
pass
url = "https://www.archlinux.org/feeds/news/"
feed = feedparser.parse(url)