Skip to content

Commit

Permalink
Merge pull request ansible#4735 from chrisalbright/patch-1
Browse files Browse the repository at this point in the history
pip module: fix unexpected behavior when creating virtualenvs
  • Loading branch information
jctanner committed Nov 5, 2013
2 parents 8d9b53b + 44c2fae commit 9aa93fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/packaging/pip
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def main():
if module.params['virtualenv_site_packages']:
cmd = '%s --system-site-packages %s' % (virtualenv, env)
else:
cmd = '%s %s' % (virtualenv, env)
cmd = '%s --no-site-packages %s' % (virtualenv, env)
os.chdir(tempfile.gettempdir())
if chdir:
os.chdir(chdir)
Expand Down

0 comments on commit 9aa93fa

Please sign in to comment.