blob: feb2632d9f087c968d32c23b2807afda74cc7b64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!python
"""\
This script/module exists for backward compatibility only! It will go away
entirely in 0.7. Please start using the 'easy_install' script or .exe instead
of using 'python -m easy_install' or running 'easy_install.py' directly.
"""
if __name__ == '__main__':
import sys
print >>sys.stderr, \
"Please use the 'easy_install' script or executable instead."
print >>sys.stderr, \
"(i.e., don't include the '.py' extension and don't use 'python -m')"
sys.exit(2)
|