Browse Source

log: show which courses will be downloaded

master
TiynGER 1 month ago
parent
commit
9d08df462b
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/studip.py

+ 1
- 0
src/studip.py

@ -92,6 +92,7 @@ class Studip:
curr_ind = ord_sems.index(semester) curr_ind = ord_sems.index(semester)
if start_ind <= curr_ind <= end_ind: if start_ind <= curr_ind <= end_ind:
course_title = course['title'] course_title = course['title']
log.info(course_title + " will be downloaded")
course_id = course['course_id'] course_id = course['course_id']
course_list[course_id] = course_title course_list[course_id] = course_title
return course_list return course_list

Loading…
Cancel
Save