Skip to content

Commit

Permalink
Merge pull request pypa#447 from pfmoore/no_sdist_fatal
Browse files Browse the repository at this point in the history
Make not having setuptools or pip sdists a fatal error
  • Loading branch information
pfmoore committed Aug 20, 2013
2 parents 1b9e9a3 + 1af233b commit 1da4814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ def install_sdist(project_name, sdist, py_executable, search_dirs=None):
found, sdist_path = _find_file(sdist, search_dirs)
if not found:
logger.fatal("Cannot find sdist %s" % (sdist,))
return
sys.exit(100)

tmpdir = tempfile.mkdtemp()
try:
Expand Down

0 comments on commit 1da4814

Please sign in to comment.