Skip to content

Commit bfb1d5e

Browse files
committed
Fix another name varibale name
1 parent ceb6bd3 commit bfb1d5e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,9 +569,9 @@ def create_translations_pr(
569569
# that are not in the translations folder
570570
trans_files = []
571571
for root, _dirs, files in os.walk(trans_lang_path):
572-
for name in files:
572+
for fname in files:
573573
trans_files.append(
574-
str(os.path.join(root, name)).replace(str(trans_lang_path), "")
574+
str(os.path.join(root, fname)).replace(str(trans_lang_path), "")
575575
)
576576
print("\n\n### Files in translations folder")
577577
for g in trans_files:

0 commit comments

Comments
 (0)