From 2feb1618465c4a2f6918f86ec474ab3ec1382166 Mon Sep 17 00:00:00 2001 From: Magnus Giesbert <magnus@fsmpi.rwth-aachen.de> Date: Sun, 3 May 2020 00:56:16 +0200 Subject: [PATCH] fix indentation (spaces->tabs) --- importer.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/importer.py b/importer.py index 6babd62..502226e 100644 --- a/importer.py +++ b/importer.py @@ -139,11 +139,11 @@ def fetch_ro_course_events(item): args = urllib.parse.parse_qs(url.query) if 'pStpSpNr' in args: # Legacy URLs id = args['pStpSpNr'][0] - elif len(url.path.split('/')) > 1 and url.path.split('/')[-2] == 'courses': # New URLs - id = url.path.split('/')[-1] - else: - flash("Ungültige URL: '"+url.geturl()+"'") - return [] #cant get events from wrong URL so just return empty list + elif len(url.path.split('/')) > 1 and url.path.split('/')[-2] == 'courses': # New URLs + id = url.path.split('/')[-1] + else: + flash("Ungültige URL: '"+url.geturl()+"'") + return [] #cant get events from wrong URL so just return empty list cal = icalendar.Calendar().from_ical(fetch_ro_course_ical(id)) events = [] for comp in cal.subcomponents: -- GitLab