From 9d08df462bd35bbfc0a7ae21a1616b79063675f3 Mon Sep 17 00:00:00 2001 From: TiynGER Date: Tue, 10 Nov 2020 12:44:31 +0100 Subject: [PATCH] log: show which courses will be downloaded --- src/studip.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/studip.py b/src/studip.py index ad83392..8265b19 100755 --- a/src/studip.py +++ b/src/studip.py @@ -92,6 +92,7 @@ class Studip: curr_ind = ord_sems.index(semester) if start_ind <= curr_ind <= end_ind: course_title = course['title'] + log.info(course_title + " will be downloaded") course_id = course['course_id'] course_list[course_id] = course_title return course_list