diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2010-11-08 20:03:49 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2010-11-08 20:03:49 +0100 |
commit | 9558d973693e9ae3d90f21682893bafdca9cdcb2 (patch) | |
tree | 06364da376fbfdc27c917811edf3c4fb3d5ca14c | |
parent | ae46cfb761c54241b3e01ef4d503ada5143afaa9 (diff) | |
download | curunir-9558d973693e9ae3d90f21682893bafdca9cdcb2.tar curunir-9558d973693e9ae3d90f21682893bafdca9cdcb2.zip |
mensa.py: Another fix...
-rw-r--r-- | modules/mensa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mensa.py b/modules/mensa.py index 279caa0..8e66796 100644 --- a/modules/mensa.py +++ b/modules/mensa.py @@ -59,7 +59,7 @@ class Module(ModuleBase): return (ret, match.end()) - match = re.compile(r'^.*?<table[^>]*>.*?<td[^>]*>.*?(\d+)\.(\d+)\. - \d+\.\d+\.(\d+)\.*?</td>.*?(?:<col[^>]*>\s*){4}(.*?)</table>.*$', re.DOTALL).match(data) + match = re.compile(r'^.*?<table[^>]*>.*?<td[^>]*>.*?(\d+)\.(\d+)\. - \d+\.\d+\.(\d+)\.*?</td>.*?<td>Freitag</td>\s*</tr>(.*?)</table>.*$', re.DOTALL).match(data) if not match: return False |