Skip to content

Commit 45dc095

Browse files
committed
makeqstrdata.py: Remove a problematic print
.. it contained non-ASCII characters, even when building the standard English translation. This may help resolve the build problems reported at adafruit#4750.
1 parent 35f1da4 commit 45dc095

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

py/makeqstrdata.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,6 @@ def compute_huffman_coding(translations, compression_filename):
419419

420420
print("//", values, lengths)
421421
values = [(atom if len(atom) == 1 else chr(0x80 + words.index(atom))) for atom in values]
422-
print("//", values, lengths)
423422
max_translation_encoded_length = max(
424423
len(translation.encode("utf-8")) for (original, translation) in translations
425424
)

0 commit comments

Comments
 (0)