Skip to content

Commit 880fe1a

Browse files
committed
gen_display_resources: silence 'missing character' message
Since we made the decision to allow translations which do not have coverage in the terminal font, these routinely occur and are expected. The message is unhelpful and due to their voume make it harder to find relevant information particularly in github actions results.
1 parent 08ed09a commit 880fe1a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tools/gen_display_resources.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def _load_row(self, y, row):
6161
# Get each glyph.
6262
for c in set(all_characters):
6363
if ord(c) not in f._glyphs:
64-
print("Font missing character:", c, ord(c))
6564
filtered_characters = filtered_characters.replace(c, "")
6665
continue
6766
g = f.get_glyph(ord(c))

0 commit comments

Comments
 (0)