summaryrefslogtreecommitdiff
path: root/setuptools/command/develop.py
diff options
context:
space:
mode:
authorRyan Kelly <ryan@truveris.com>2015-11-24 13:46:26 -0500
committerRyan Kelly <ryan@truveris.com>2015-11-24 13:46:26 -0500
commite311cafb5305a445def27fbc79fdc5f098c76728 (patch)
tree8e97c51aa5fb7cb7f726a896cdea78cb0203ff98 /setuptools/command/develop.py
parentf34cf8e9242d2b4c25b5a511f9f74fbffcb17c4f (diff)
downloadpython-setuptools-git-e311cafb5305a445def27fbc79fdc5f098c76728.tar.gz
issue #464: don't crash using super() on a old-style class
Diffstat (limited to 'setuptools/command/develop.py')
-rwxr-xr-xsetuptools/command/develop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py
index 360872fc..5ae25d71 100755
--- a/setuptools/command/develop.py
+++ b/setuptools/command/develop.py
@@ -170,7 +170,7 @@ class develop(easy_install):
def install_wrapper_scripts(self, dist):
dist = VersionlessRequirement(dist)
- return super(develop, self).install_wrapper_scripts(dist)
+ return easy_install.install_wrapper_scripts(self, dist)
class VersionlessRequirement(object):