Skip to content
Snippets Groups Projects
Commit 9df70439 authored by Ger van Diepen's avatar Ger van Diepen
Browse files

Task #514

Put original string in dict instead of unquoted one
parent 6319c427
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ class parameterset(PyParameterSet):
"""Turn the parset into a dict"""
d = {}
for key in self.keys():
d[key] = self.getString(key)
d[key] = self.get(key).get()
return d
def get(self, key):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment