fix: translation file extraction script

This commit is contained in:
2023-10-23 16:08:11 +08:00
parent 28599cfb04
commit 38d2e4ad5a

View File

@ -56,7 +56,7 @@ commands = [
], # en_US ], # en_US
] ]
if no_obsolete: if no_obsolete:
commands = [command.extend(["-no-obsolete"]) for command in commands] commands = [command + ["-no-obsolete"] for command in commands]
for command in commands: for command in commands:
subprocess.run(command) subprocess.run(command)