Skip to content

Commit

Permalink
Merge pull request #2198 from pypa/call-virtualenv-by-module
Browse files Browse the repository at this point in the history
Call virtualenv by module
  • Loading branch information
techalchemy committed May 16, 2018
2 parents 5ab9603 + ee36c6a commit 89921f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ def do_create_virtualenv(python=None, site_packages=False):
# The user wants the virtualenv in the project.
if project.is_venv_in_project():
cmd = [
'virtualenv',
sys.executable, '-m', 'virtualenv',
project.virtualenv_location,
'--prompt=({0})'.format(project.name),
]
Expand Down

0 comments on commit 89921f7

Please sign in to comment.