"vscode:/vscode.git/clone" did not exist on "28b871a71407a1e7fd45fab5e8eaa0e46b2c5a9c"
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: ...@@ -275,7 +275,7 @@ class TaskManager:
task_object = config["class"]() task_object = config["class"]()
if isinstance(task_object, ConfigurableTask): if isinstance(task_object, ConfigurableTask):
# very scuffed: set task name here. TODO: fixme? # very scuffed: set task name here. TODO: fixme?
task_object.config.task = config["task"] task_object.config.task = task
else: else:
task_object = ConfigurableTask(config=config) 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