From 669e2cf674918651ba91107c7bbb65096dcd6110 Mon Sep 17 00:00:00 2001 From: NHG Date: Fri, 20 Sep 2019 20:39:09 +0200 Subject: [PATCH] fix room filter --- sotm2019/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sotm2019/__init__.py b/sotm2019/__init__.py index 409b198..e2ce122 100644 --- a/sotm2019/__init__.py +++ b/sotm2019/__init__.py @@ -71,7 +71,7 @@ def debug(): def tasks(queue, args, idlist, skiplist): # iterate over all events extracted from the schedule xml-export for event in events(scheduleUrl): - if event['room'] not in ('i1', 'i2', 'i7', 'i11', 'i12', 'i13'): + if event['room'] not in ('Hörsaal Ost', 'Großer Hörsaal', 'Hörsaal West'): print("skipping room %s (%s)" % (event['room'], event['title'])) continue if event['day'] not in ('2'):