Revert "Probably just a temporary fix. Meh."
This reverts commit 2560ad53a0
.
This commit is contained in:
parent
2560ad53a0
commit
9ead5a211c
1 changed files with 4 additions and 4 deletions
|
@ -75,7 +75,7 @@ class Module(ModuleBase):
|
||||||
meals = []
|
meals = []
|
||||||
pos = 0
|
pos = 0
|
||||||
|
|
||||||
for i in range(0,5):
|
for i in range(0,6):
|
||||||
row = handle_data_row(data, pos)
|
row = handle_data_row(data, pos)
|
||||||
|
|
||||||
if not row:
|
if not row:
|
||||||
|
@ -122,10 +122,10 @@ class Module(ModuleBase):
|
||||||
reply += 'Hauptgericht 2: %s (%s)\n' % meals[3][weekday]
|
reply += 'Hauptgericht 2: %s (%s)\n' % meals[3][weekday]
|
||||||
if meals[2][weekday][0]:
|
if meals[2][weekday][0]:
|
||||||
reply += 'Vegetarisches Hauptgericht: %s (%s)\n' % meals[2][weekday]
|
reply += 'Vegetarisches Hauptgericht: %s (%s)\n' % meals[2][weekday]
|
||||||
#if meals[4][weekday][0]:
|
|
||||||
# reply += 'Wok: %s (%s)\n' % meals[4][weekday]
|
|
||||||
if meals[4][weekday][0]:
|
if meals[4][weekday][0]:
|
||||||
reply += 'Beilagen: %s (%s)\n' % meals[4][weekday]
|
reply += 'Wok: %s (%s)\n' % meals[4][weekday]
|
||||||
|
if meals[5][weekday][0]:
|
||||||
|
reply += 'Beilagen: %s (%s)\n' % meals[5][weekday]
|
||||||
|
|
||||||
return reply
|
return reply
|
||||||
|
|
||||||
|
|
Reference in a new issue