Skip to content

Commit c756492

Browse files
committed
debug win
1 parent 3f2e164 commit c756492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ def _match_file(
13271327
def _resolve_local_path(path_str: str) -> Path:
13281328
parsed = parse_url(path_str)
13291329
if is_platform_windows() and parsed.scheme != "file":
1330-
return Path(unquote(path_str.lstrip("/")))
1330+
return Path(unquote(path_str.lstrip("/\\")))
13311331
return Path(unquote(parsed.path))
13321332

13331333

0 commit comments

Comments
 (0)