Skip to content

Commit

Permalink
translations: fix python version.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwagyeman committed Nov 23, 2024
1 parent 43453aa commit dbe85fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/qtcreator/translations/translate.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

def translate_file(file_name):
language_code = file_name.split('_')[1].split('.')[0]
command = f"python -u CuteLingoExpress/auto_trans.py {file_name} en {language_code}"
command = f"python3 -u CuteLingoExpress/auto_trans.py {file_name} en {language_code}"
process = subprocess.Popen(command, shell=True)
process.wait()

Expand Down

0 comments on commit dbe85fc

Please sign in to comment.