From 69994fb9c5c57bc1299ab08a05856a7e9012ca5e Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 22 Apr 2020 10:06:49 +0200 Subject: [PATCH] [command] add spaces --- .../management/commands/telemeta-run-timeside-experience.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/telemeta/management/commands/telemeta-run-timeside-experience.py b/telemeta/management/commands/telemeta-run-timeside-experience.py index 7e3616d2..7c97b806 100644 --- a/telemeta/management/commands/telemeta-run-timeside-experience.py +++ b/telemeta/management/commands/telemeta-run-timeside-experience.py @@ -97,8 +97,8 @@ class Command(BaseCommand): def create_experience(self): presets = [] - processors = timeside.core.processor.processors(timeside.core.api.IProcessor) + for proc in processors: trig = True # print(proc.id()) @@ -119,6 +119,7 @@ class Command(BaseCommand): else: self.experience = Experience() self.experience.save() + for preset in presets: if not preset in self.experience.presets.all(): self.experience.presets.add(preset) -- 2.39.5