Commit 2fd812b4 authored by Vincent Pelletier's avatar Vincent Pelletier

fixup! Provide an SR-transparent way to (de)serialise master data.

parent 4578b4bb
...@@ -141,7 +141,7 @@ class Recipe(object): ...@@ -141,7 +141,7 @@ class Recipe(object):
def _getReturnParameterDict(self, instance, return_parameter_list): def _getReturnParameterDict(self, instance, return_parameter_list):
result = {} result = {}
for param in return_parameters: for param in return_parameter_list:
try: try:
result[param] = str(instance.getConnectionParameter(param)) result[param] = str(instance.getConnectionParameter(param))
except slapmodule.NotFoundError: except slapmodule.NotFoundError:
......
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