From c5e9e93e6bdb7f287037399b040f08ce154db400 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 24 Jun 2026 23:10:12 +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 7e6c121c..9b9d89f8 100644 --- a/teleforma/management/commands/teleforma-import-conferences-4.py +++ b/teleforma/management/commands/teleforma-import-conferences-4.py @@ -37,7 +37,7 @@ class Command(BaseCommand): def find_format(self, conf_dir, file_format): files = [] all_files = os.listdir(conf_dir) - for file in _all_files: + for file in all_files: name, ext = os.path.splitext(file) if ext[1:] in file_format: files.add(conf_dir + os.sep + file) -- 2.47.3