Archived
1
0
Fork 0

remove forgotten print

This commit is contained in:
Lukas Winkler 2017-11-13 13:21:01 +01:00
parent ff9b7687e2
commit f7b48b511d

View file

@ -27,7 +27,6 @@ def get_menus():
tagesmenus = [] tagesmenus = []
soup = BeautifulSoup(fetch_recourse(), 'html.parser') soup = BeautifulSoup(fetch_recourse(), 'html.parser')
hs_div = get_hauptsachen(soup) hs_div = get_hauptsachen(soup)
print(hs_div)
for day_p in hs_div.find_all("p", text=dateregex): for day_p in hs_div.find_all("p", text=dateregex):
datestring = dateregex.search(day_p.text).group(0) datestring = dateregex.search(day_p.text).group(0)
date = datetime.strptime(datestring, "%d.%m.%Y") date = datetime.strptime(datestring, "%d.%m.%Y")