aboutsummaryrefslogtreecommitdiff
path: root/codegen/genentities.py
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/genentities.py')
-rw-r--r--codegen/genentities.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/codegen/genentities.py b/codegen/genentities.py
index 12354fe7..bb1c9b24 100644
--- a/codegen/genentities.py
+++ b/codegen/genentities.py
@@ -9,9 +9,9 @@ version_id = lib.code.version.get_version_id()
mappings = lib.download.get_mappings_for_version(version_id)
burger_data = lib.extract.get_burger_data_for_version(version_id)
-burger_entity_data = burger_data[0]['entities']['entity']
+burger_entities_data = burger_data[0]['entities']
-lib.code.entity.generate_entity_metadata(burger_entity_data, mappings)
+lib.code.entity.generate_entity_metadata(burger_entities_data, mappings)
lib.code.utils.fmt()