Skip to content
Snippets Groups Projects
Commit 96eebabc authored by Alexander Schlemmer's avatar Alexander Schlemmer
Browse files

FIX: bug in new usage of stores

parent 3428f273
No related branches found
No related tags found
1 merge request!53Release 0.1
...@@ -178,9 +178,9 @@ class Converter(object): ...@@ -178,9 +178,9 @@ class Converter(object):
for name, record in self.definition["records"].items(): for name, record in self.definition["records"].items():
if name not in records: if name not in records:
c_record = db.Record() c_record = db.Record()
records.storage[name] = c_record records[name] = c_record
c_record = records.storage[name] c_record = records[name]
values.storage[name] = c_record values[name] = c_record
if "parents" in record: if "parents" in record:
for parent in record["parents"]: for parent in record["parents"]:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment