We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb6bd3 commit bfb1d5eCopy full SHA for bfb1d5e
1 file changed
main.py
@@ -569,9 +569,9 @@ def create_translations_pr(
569
# that are not in the translations folder
570
trans_files = []
571
for root, _dirs, files in os.walk(trans_lang_path):
572
- for name in files:
+ for fname in files:
573
trans_files.append(
574
- str(os.path.join(root, name)).replace(str(trans_lang_path), "")
+ str(os.path.join(root, fname)).replace(str(trans_lang_path), "")
575
)
576
print("\n\n### Files in translations folder")
577
for g in trans_files:
0 commit comments