Skip to content

Commit 16b74f4

Browse files
path fix
1 parent 55269e2 commit 16b74f4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

l10n_CM/run_l10n.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ def get_region_tests(test_region: str) -> list[str]:
126126
region_data = load(fp)
127127
raw_tests = region_data.get("tests", [])
128128
return (
129-
list(map(lambda test: current_dir + "/Unified/" + test, raw_tests))
129+
list(
130+
map(lambda test: os.path.join(current_dir, "Unified", test), raw_tests)
131+
)
130132
if len(raw_tests) > 0
131133
else raw_tests
132134
)

0 commit comments

Comments
 (0)