Skip to content

Commit

Permalink
Fix lockfile filename parsing
Browse files Browse the repository at this point in the history
- convert to string properly
  • Loading branch information
techalchemy authored May 27, 2018
1 parent e993ee8 commit 311c90d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipenv/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,8 @@ def get_vcs_deps(
lockfiles.append({pipfile_name: installed.pipfile_entry[1]})
pipfile_srcdir = escape_grouped_arguments((src_dir / pipfile_name).as_posix())
lockfile_srcdir = escape_grouped_arguments(
(src_dir / installed.normalized_name))
(src_dir / installed.normalized_name).as_posix()
)
lines.append(line)
if os.path.exists(pipfile_srcdir):
lockfiles.extend(
Expand Down

0 comments on commit 311c90d

Please sign in to comment.