From 3cb41e199b405566bd6c30f9b60de9a053fb4006 Mon Sep 17 00:00:00 2001 From: yomguy Date: Wed, 18 Jul 2012 15:38:37 +0200 Subject: [PATCH] fix --- teleforma/management/commands/teleforma-import-conferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-import-conferences.py b/teleforma/management/commands/teleforma-import-conferences.py index aa8ac6f0..da79e456 100644 --- a/teleforma/management/commands/teleforma-import-conferences.py +++ b/teleforma/management/commands/teleforma-import-conferences.py @@ -112,7 +112,7 @@ class Command(BaseCommand): item.file = path item.save() - files = os.path.listdir(root) + files = os.listdir(root) for file in files: filename, ext = os.path.splitext(file) if ext[1:] in self.image_formats: -- 2.39.5