add missing attributes in ids.parse

This commit is contained in:
Vukas Pajic
2023-10-11 10:06:54 +02:00
committed by GitHub
parent 3de9915389
commit da7f5b015b
+1 -1
View File
@@ -90,7 +90,7 @@ class Ids:
return ids_dict
def parse(self, data):
for attribute in ["title", "copyright", "version", "description", "author"]:
for attribute in ["title", "copyright", "version", "description", "author", "date", "purpose", "milestone"]:
value = data["info"].get(attribute)
if value:
self.info[attribute] = value