Remove warnings caused by '\x00'

Manually unescape '\x00' for the time being, removing spurious warnings.
This commit is contained in:
Yuri D'Elia 2021-04-23 12:37:54 +02:00
parent 2e6e2c4fde
commit 90a9e350c0

View file

@ -45,6 +45,9 @@ def parse_txt(lang, no_warning):
source = src.readline()[:-1].strip('"')
#print (source) #Debug
translation = src.readline()[:-1].strip('"')
if translation == '\\x00':
# crude hack to handle intentionally-empty translations
translation = ''
#print (translation) #Debug
#Wrap text to 20 chars and rows
wrapper = textwrap.TextWrapper(width=20)