Skip to content

Commit

Permalink
Fix path_locations for PyPy on Windows (#1400)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed authored and gaborbernat committed Aug 5, 2019
1 parent c060353 commit 24c58ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualenv.py
Expand Up @@ -1215,7 +1215,7 @@ def path_locations(home_dir, dry_run=False):
lib_dir = join(home_dir, "Lib")
inc_dir = join(home_dir, "Include")
bin_dir = join(home_dir, "Scripts")
elif IS_PYPY:
if IS_PYPY:
lib_dir = home_dir
inc_dir = join(home_dir, "include")
bin_dir = join(home_dir, "bin")
Expand Down

0 comments on commit 24c58ed

Please sign in to comment.