From fc798afea8b8ab51dc77c82def38456e1febbd56 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 25 Jan 2021 18:01:35 +0100 Subject: [PATCH] bugfix --- teleforma/management/commands/teleforma-pull-courses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-pull-courses.py b/teleforma/management/commands/teleforma-pull-courses.py index 84561fd1..9c33fff9 100644 --- a/teleforma/management/commands/teleforma-pull-courses.py +++ b/teleforma/management/commands/teleforma-pull-courses.py @@ -22,5 +22,5 @@ class Command(BaseCommand): view.pull(organization_name) for course_type in CourseType.objects.all(): - if 'é' in course_type.name: + if 'supp' in course_type.name: course_type.delete() -- 2.39.5