mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-21 20:06:40 +00:00
Don't report errors for empty attribute values
Let checkrefs.py skip reporting errors for empty attribute values. Fixes #7966
This commit is contained in:
@@ -947,7 +947,7 @@ class CheckRefs:
|
||||
|
||||
for category, items in self.deps_gui_items.items():
|
||||
for ref, item in items:
|
||||
if item not in self.gui_items[category]:
|
||||
if item != "" and item not in self.gui_items[category]:
|
||||
missing_items[category][item].add(ref)
|
||||
|
||||
for category, items in missing_items.items():
|
||||
|
||||
Reference in New Issue
Block a user