Crowdin: Fix Python syntax error

This commit is contained in:
Guo Yunhe 2021-11-06 14:08:12 +08:00 committed by GitHub
parent 830960027e
commit 08be8156c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ p = re.compile(
def c89_cut(old_str):
if old_str.endswith('[...]')
if old_str.endswith('[...]'):
return old_str
new_str = ''
byte_count = 0