Skip to content

Commit db7c9a6

Browse files
committed
use as_posix on web_module_names
1 parent 0c78acf commit db7c9a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

idom/client/manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def web_module_exists(package_name: str) -> bool:
3535

3636
def web_module_names() -> Set[str]:
3737
return {
38-
str(rel_pth).rstrip(".js")
38+
str(rel_pth.as_posix()).rstrip(".js")
3939
for rel_pth in (
4040
pth.relative_to(WEB_MODULES_DIR) for pth in WEB_MODULES_DIR.glob("**/*.js")
4141
)

0 commit comments

Comments
 (0)