generation: Fix bytes/str error

This was probably left over from supporting Python 2 in the scripts.
This commit is contained in:
Philip Chimento 2024-04-12 17:36:09 -07:00 committed by Philip Chimento
parent 65ff60c209
commit 8e9141e69d
1 changed files with 1 additions and 1 deletions
tools/generation/lib

View File

@ -55,7 +55,7 @@ class Test:
' * ' + self.file_name,
' * ----------------------------------------------------------------',
' */',
self.source,
self.source.decode('utf-8'),
'\n'])
@after_parse