summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-01-12 11:52:46 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-01-12 11:52:46 +0200
commita2854ec66e8f92917a8b279552f1d4bc8b67a81f (patch)
treef061c078649573045600847737f7225d147aa7fd /setup.py
parent65bc3474c8263c6a53ed2438fcc8b1eb6c20b0eb (diff)
downloadpylint-git-a2854ec66e8f92917a8b279552f1d4bc8b67a81f.tar.gz
Check for easy_install_lib instead of easy_install, the latter might not exist.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4ae7d2db9..402b6558e 100644
--- a/setup.py
+++ b/setup.py
@@ -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,