From ccd42fecc1c0ef1521b01c60b185c041c3cd1aed Mon Sep 17 00:00:00 2001 From: Andreas <andreasv@fsmpi.rwth-aachen.de> Date: Sat, 20 May 2017 18:52:04 +0200 Subject: [PATCH] small ical bug fix --- icalexport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icalexport.py b/icalexport.py index b2a8398..95448e9 100644 --- a/icalexport.py +++ b/icalexport.py @@ -56,7 +56,7 @@ def ical_semester(semester): @app.route('/internal/ical/all') @calperm def ical_all(): - return export_lectures(query('SELECT lectures.* FROM lectures lectures.visible = 1', semester),'videoag_all.ics') + return export_lectures(query('SELECT lectures.* FROM lectures lectures.visible = 1'),'videoag_all.ics') @app.route('/internal/ical/course/<course>') @calperm -- GitLab