Skip to content

Commit 4fe3946

Browse files
committed
Ensure abspath
1 parent 325dee1 commit 4fe3946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipenv/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def _normalized(p):
5353
path_str = matches and matches[0] or str(loc)
5454
else:
5555
path_str = str(loc)
56-
return normalize_drive(path_str)
56+
return normalize_drive(os.path.abspath(path_str))
5757

5858

5959
DEFAULT_NEWLINES = u"\n"

0 commit comments

Comments
 (0)