copy_fix: Don't generate comment line, just add missing translations at the end

This commit is contained in:
def 2020-06-26 23:28:44 +02:00
parent 3278002ac7
commit 2d581e0612

View file

@ -45,7 +45,6 @@ content = [line for line in content if line != None]
if append_missing:
missing = [index for index in range(len(local)) if index not in supported]
if missing:
content.append("\n##### generated by copy_fix.py, please translate this #####\n")
for miss in missing:
content.append("\n"+local[miss]+"\n== \n")