diff --git a/chemnitz.kitchen_menue_scraper.py b/chemnitz.kitchen_menue_scraper.py index f5bb707..cbbd113 100644 --- a/chemnitz.kitchen_menue_scraper.py +++ b/chemnitz.kitchen_menue_scraper.py @@ -7,7 +7,7 @@ from datetime import date errorMsg = ('HEUTE KEIN ESSEN') menuMsg = ('Du hast bei Chemnitz.Kitchen bestellt! Heute gibt es:') today = date.today() -today_url = today.strftime("%d-%m-%Y") +today_url = today.strftime("%d.%m.%Y") # Login URL loginurl = ('https://chemnitz.kitchen/login/') @@ -34,4 +34,5 @@ with requests.session() as s: textout = f' {menuMsg} {description}' print(textout) +print(today)