We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20fda9 commit 8ffb9a9Copy full SHA for 8ffb9a9
docs/video/repair_error.mp4
1.17 MB
src/renpy_lint.py
@@ -34,6 +34,9 @@ def fix_translation_by_lint(game_path):
34
exec_renpy_lint(game_path)
35
if os.path.isfile(target):
36
os.remove(target)
37
+ target = target[:-4] + '.error.txt'
38
+ if os.path.isfile(target):
39
+ os.remove(target)
40
return False
41
target = target[:-4] + '.error.txt'
42
if not os.path.isfile(target):
0 commit comments