mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-17 21:48:19 +00:00
Fix performance regression in copy_fix.py
This commit is contained in:
parent
8a20f0d8a2
commit
fd4f61e601
|
@ -8,7 +8,10 @@ def copy_fix(infile, delete_unused, append_missing, delete_empty):
|
|||
with open(infile, encoding="utf-8") as f:
|
||||
content = f.readlines()
|
||||
trans = twlang.translations(infile)
|
||||
if delete_unused or append_missing:
|
||||
local = twlang.localizes()
|
||||
else:
|
||||
local = []
|
||||
supported = []
|
||||
for tran, (start, expr, end) in trans.items():
|
||||
if delete_unused and tran not in local:
|
||||
|
|
Loading…
Reference in a new issue