From 5be9bb19588019ee1d0731e0c11593fa5e777454 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 24 Jun 2026 23:17:59 +0200 Subject: [PATCH] bugfix --- teleforma/management/commands/teleforma-import-conferences-4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-import-conferences-4.py b/teleforma/management/commands/teleforma-import-conferences-4.py index c5e868d9..ea3f9c47 100644 --- a/teleforma/management/commands/teleforma-import-conferences-4.py +++ b/teleforma/management/commands/teleforma-import-conferences-4.py @@ -40,7 +40,7 @@ class Command(BaseCommand): for file in all_files: name, ext = os.path.splitext(file) if ext[1:] in file_format: - files.add(conf_dir + os.sep + file) + files.append(conf_dir + os.sep + file) if len(files) > 1: for file in files: if self.main_pattern in file: -- 2.47.3