Commit e311cafb authored by Ryan Kelly's avatar Ryan Kelly

issue #464: don't crash using super() on a old-style class

parent f34cf8e9
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment