diff options
| author | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-01-12 11:52:46 +0200 |
|---|---|---|
| committer | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-01-12 11:52:46 +0200 |
| commit | a2854ec66e8f92917a8b279552f1d4bc8b67a81f (patch) | |
| tree | f061c078649573045600847737f7225d147aa7fd | |
| parent | 65bc3474c8263c6a53ed2438fcc8b1eb6c20b0eb (diff) | |
| download | pylint-git-a2854ec66e8f92917a8b279552f1d4bc8b67a81f.tar.gz | |
Check for easy_install_lib instead of easy_install, the latter might not exist.
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -190,7 +190,7 @@ def install(**kwargs): kwargs['packages'] = packages cmdclass = {'install_lib': MyInstallLib, 'build_py': build_py} - if easy_install: + if easy_install_lib: cmdclass['easy_install'] = easy_install return setup(name=distname, version=version, |
