From 7ad052d5cc5d09652c89f0258ef59f47e95d0d9c Mon Sep 17 00:00:00 2001 From: Niko Strijbol Date: Sun, 20 Oct 2024 14:48:57 +0200 Subject: [PATCH] Add message for cafetaria Aula --- server/scraper/resto/menu_manual.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/server/scraper/resto/menu_manual.py b/server/scraper/resto/menu_manual.py index d0611a3a..141e89a5 100755 --- a/server/scraper/resto/menu_manual.py +++ b/server/scraper/resto/menu_manual.py @@ -667,6 +667,10 @@ def coupure_2024_nl(_path, original): "open": True } +def cafetaria_aula(_path, original): + add_or_append(original, "Cafetaria Aula zal vanaf 21/10 alvast voor twee weken gesloten zijn door overmacht. update via ugent.be/studentenrestaurants.") + return original + def create_changes(root_path): return [ @@ -1359,6 +1363,13 @@ def create_changes(root_path): end=date(2025, 7, 1), all_days=True ), + ManualChange( + replacer=cafetaria_aula, + resto=["nl-debrug", "nl"], + start=date(2024, 10, 21), + end=date(2024, 11, 3), + all_days=True + ), ]