Skip to content

Commit 5746657

Browse files
committed
Add missing .items()
1 parent 9573351 commit 5746657

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/maketranslationdata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def translate(translation_file, i18ns):
9090
translations = []
9191
for original in i18ns:
9292
unescaped = original
93-
for s, replacement in C_ESCAPES:
93+
for s, replacement in C_ESCAPES.items():
9494
unescaped = unescaped.replace(replacement, s)
9595
if original == "en_US":
9696
translation = table.info()["language"]

0 commit comments

Comments
 (0)