Skip to content

Commit

Permalink
Fix lng processing
Browse files Browse the repository at this point in the history
  • Loading branch information
Danstiv committed Sep 14, 2024
1 parent 62bbd47 commit df9772e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/process_translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def process_lng_files(project_path):
for file in project_path.glob("*.lng"):
if not file_updated(file):
logger.info(f"File {file.name} is not changed")
return
continue
if not LNG_FILE_REGEX.match(file.name):
errors.append(f"lng file {file} have incorrect name.")
continue
Expand Down

0 comments on commit df9772e

Please sign in to comment.