Skip to content

Commit 879e104

Browse files
committed
makeqstrdata: fix printing of 'increased length' message
1 parent e06a3bb commit 879e104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/makeqstrdata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def compress(encoding_table, decompressed):
224224
if current_bit != 7:
225225
current_byte += 1
226226
if current_byte > len(decompressed):
227-
print("Note: compression increased length", repr(decompressed.decode('utf-8')), len(decompressed), current_byte, file=sys.stderr)
227+
print("Note: compression increased length", repr(decompressed), len(decompressed), current_byte, file=sys.stderr)
228228
return enc[:current_byte]
229229

230230
def qstr_escape(qst):

0 commit comments

Comments
 (0)