From e6e811fc233c26e07e35c7ac2ff58807a4267bd3 Mon Sep 17 00:00:00 2001 From: Stijn De Clercq <60451863+stijndcl@users.noreply.github.com> Date: Thu, 17 Feb 2022 10:16:13 +0100 Subject: [PATCH] Update hydra api url --- functions/eten.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/eten.py b/functions/eten.py index e025fea..f5065f3 100644 --- a/functions/eten.py +++ b/functions/eten.py @@ -33,7 +33,7 @@ def etenScript(dag: datetime): # Fetch from API try: - menu = requests.get(f"https://zeus.ugent.be/hydra/api/2.0/resto/menu/nl/{dag.year}/{dag.month}/{dag.day}.json").json() + menu = requests.get(f"https://hydra.ugent.be/api/2.0/resto/menu/nl/{dag.year}/{dag.month}/{dag.day}.json").json() if not menu["meals"]: raise Exception()