summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2011-01-05 17:36:17 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2011-01-05 17:36:17 +0100
commit9ead5a211c9fb2f5d0239798c6c575e7d130ed3e (patch)
treef351a918f259054358697351aa9bc912d8b0cb5b /modules
parent2560ad53a09572332bc67e5dfbdfed68210fa70b (diff)
downloadcurunir-9ead5a211c9fb2f5d0239798c6c575e7d130ed3e.tar
curunir-9ead5a211c9fb2f5d0239798c6c575e7d130ed3e.zip
Revert "Probably just a temporary fix. Meh."
This reverts commit 2560ad53a09572332bc67e5dfbdfed68210fa70b.
Diffstat (limited to 'modules')
-rw-r--r--modules/mensa.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/mensa.py b/modules/mensa.py
index 0e96c7a..3c3a197 100644
--- a/modules/mensa.py
+++ b/modules/mensa.py
@@ -75,7 +75,7 @@ class Module(ModuleBase):
meals = []
pos = 0
- for i in range(0,5):
+ for i in range(0,6):
row = handle_data_row(data, pos)
if not row:
@@ -122,10 +122,10 @@ class Module(ModuleBase):
reply += 'Hauptgericht 2: %s (%s)\n' % meals[3][weekday]
if meals[2][weekday][0]:
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]:
- 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