Fix connect dict to place non-existing entries on the section name instead of General

This commit is contained in:
allegroai 2020-10-30 10:03:12 +02:00
parent e7843c4dc4
commit 59629d7a15

View File

@ -418,7 +418,7 @@ class _Arguments(object):
# if key is not present in the task's parameters, assume we didn't get this far when running # if key is not present in the task's parameters, assume we didn't get this far when running
# in non-remote mode, and just add it to the task's parameters # in non-remote mode, and just add it to the task's parameters
if k not in parameters: if k not in parameters:
self._task.set_parameter(k, v) self._task.set_parameter((prefix or '') + k, v)
continue continue
param = parameters.get(k, None) param = parameters.get(k, None)