Fix wrong environment variable name

This commit is contained in:
Phillip J. Eby 2007-05-02 03:06:55 +00:00
parent 336525defa
commit bdb8407da1
1 changed files with 4 additions and 4 deletions

View File

@ -48,10 +48,10 @@ to request downloading and installation of ``SomePackage`` from PyPI.
This feature would *not* be a replacement for ``easy_install``; This feature would *not* be a replacement for ``easy_install``;
instead, it would rely on ``SomePackage`` having pure-Python ``.egg`` instead, it would rely on ``SomePackage`` having pure-Python ``.egg``
files listed for download via the PyPI XML-RPC API, and the eggs would files listed for download via the PyPI XML-RPC API, and the eggs would
be placed in the ``$PYTHONEGGS`` cache, where they would **not** be be placed in the ``$PYTHON_EGG_CACHE`` directory, where they would
importable by default. (And no scripts would be installed) However, **not** be importable by default. (And no scripts would be installed.)
if the download egg contains installation bootstrap code, it will be However, if the download egg contains installation bootstrap code, it
given a chance to run. will be given a chance to run.
These restrictions would allow the code to be extremely simple, yet These restrictions would allow the code to be extremely simple, yet
still powerful enough to support users downloading package management still powerful enough to support users downloading package management