diff --git a/lflex_celcat_survival/events.py b/lflex_celcat_survival/events.py index 776491dca5fc230314d10ac4b097ba0856a4ac44..2bb4de6cebc55eb104b983a82c422c921b40487f 100644 --- a/lflex_celcat_survival/events.py +++ b/lflex_celcat_survival/events.py @@ -54,7 +54,7 @@ class FilteredCelcatEvents: logging.warning('The number of time slots fetched from CELCAT does not match the expected number of time slots for some courses') logging.warning(f'\n{fetch_problem_df}') - logging.warning('\nDetails of the involved time slots:') + logging.warning('Details of the involved time slots:') problematic_courses = fetch_problem_df[['course_request_id']] problematic_time_slots = problematic_courses.merge(self.df, how='inner', on='course_request_id') problematic_time_slots = problematic_time_slots.sort_values(by=['course_request_id', 'start'])[['course_request_id', 'module_apogee', 'module_readable', 'start', 'end', 'course_type', 'group']]