diff --git a/.github/db_operator.py b/.github/db_operator.py index d76207faa..09009327c 100755 --- a/.github/db_operator.py +++ b/.github/db_operator.py @@ -772,6 +772,9 @@ class DatabaseBuilder: tags = self._tags.get_tags_for_file(file) for term in filter_terms: + if not term: + print('WARNING! Empty term found in filter_terms', filter_terms) + continue tags.append(self._tags._use_term(term)) self._files[strfile] = {**description, "tags": tags}