diff options
Diffstat (limited to 'easy_install.py')
-rwxr-xr-x | easy_install.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/easy_install.py b/easy_install.py index 4b204c47..bc2270c0 100755 --- a/easy_install.py +++ b/easy_install.py @@ -15,5 +15,8 @@ import sys from setuptools.command.easy_install import * if __name__ == '__main__': + print >>sys.stderr, "NOTE: python -m easy_install is deprecated." + print >>sys.stderr, "Please use the 'easy_install' command instead." + print >>sys.stderr main(sys.argv[1:]) |