Skip to content

Commit

Permalink
fix: flag disable concurrency for locale now works
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Aug 29, 2024
1 parent a396b63 commit 1e02dd8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/localization/generateLocalizedStringsAnalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,9 @@ def process_keys():
for_loop_iterations["keys"] = 0
for_loop_iterations["files"] = 0
for_loop_iterations["lines"] = 0
for i in range(number_of_keys):
key = key_list[i]
i = -1
for key in key_list:
i = i + 1
regex_list = localization_regex_as_list(key)

progress_bar(
Expand Down

0 comments on commit 1e02dd8

Please sign in to comment.