From: Guillaume Pellerin Date: Wed, 24 Jun 2026 21:10:12 +0000 (+0200) Subject: bugfix X-Git-Tag: 3.0.2~1^2~8 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=c5e9e93e6bdb7f287037399b040f08ce154db400;p=teleforma.git bugfix --- 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)