From: Guillaume Pellerin Date: Mon, 22 Jun 2026 12:43:34 +0000 (+0200) Subject: fix import path X-Git-Tag: 3.0.2~1^2~18 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=f6cff8ae738bb28930aa66131745a5446af21621;p=teleforma.git fix import path --- diff --git a/teleforma/management/commands/teleforma-import-conferences-4.py b/teleforma/management/commands/teleforma-import-conferences-4.py index baa910fb..67a54cc3 100644 --- a/teleforma/management/commands/teleforma-import-conferences-4.py +++ b/teleforma/management/commands/teleforma-import-conferences-4.py @@ -62,7 +62,8 @@ class Command(BaseCommand): str(conference.date_begin.year), self.spacer.join([ conference.course.code, - str(conference.course_type)]), + "-".join(str(conference.course_type).split(" ")) + ]), conference.public_id]) if (os.path.exists(conf_dir) and not conference.media.all()):