Commit 757e50c5 authored by Marco Mariani's avatar Marco Mariani Committed by Cédric de Saint Martin

fixed call to super()

parent 84d9c96b
...@@ -232,7 +232,7 @@ class AllowHostsPackageIndex(setuptools.package_index.PackageIndex): ...@@ -232,7 +232,7 @@ class AllowHostsPackageIndex(setuptools.package_index.PackageIndex):
if dist in requirement: if dist in requirement:
return dist return dist
self.debug("%s does not match %s", requirement, dist) self.debug("%s does not match %s", requirement, dist)
return super(PackageIndex, self).obtain(requirement,installer) return super(AllowHostsPackageIndex, self).obtain(requirement,installer)
def find_packages(self, requirement): def find_packages(self, requirement):
# XXX BEGIN HARDCODE # XXX BEGIN HARDCODE
......
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