Skip to content

Commit

Permalink
added support for mounted drives via unc paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
erinxocon committed Jun 9, 2018
1 parent 1468b07 commit 6caed81
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pipenv/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@
def _normalized(p):
if p is None:
return None
return normalize_drive(str(Path(p).resolve()))
loc = Path(p)
if loc.is_absolute():
return normalize_drive(str(loc))
else:
return normalize_drive(str(loc.resolve()))


DEFAULT_NEWLINES = u'\n'
Expand Down

0 comments on commit 6caed81

Please sign in to comment.