Skip to content

Commit 3f2e164

Browse files
committed
debug win
1 parent 2f0bc00 commit 3f2e164

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))
1330+
return Path(unquote(path_str.lstrip("/")))
13311331
return Path(unquote(parsed.path))
13321332

13331333

0 commit comments

Comments
 (0)