Unverified Commit 15ffb0da authored by Giulio Lovisotto's avatar Giulio Lovisotto Committed by GitHub
Browse files

Fix missing key in custom task loading. (#2304)

parent caa7c409
......@@ -275,7 +275,7 @@ class TaskManager:
task_object = config["class"]()
if isinstance(task_object, ConfigurableTask):
# very scuffed: set task name here. TODO: fixme?
task_object.config.task = config["task"]
task_object.config.task = task
else:
task_object = ConfigurableTask(config=config)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment