Fix superclass call from url_debian_ports_pool.__call__

This is actually dead code. but Thorsten Glaser spotted the bug anyway.

svn path=/dists/trunk/linux-2.6/; revision=18639
This commit is contained in:
Ben Hutchings 2012-01-27 03:52:10 +00:00
parent 6e00b45f9b
commit 1c40df1f3c
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class url_debian_pool(object):
class url_debian_ports_pool(url_debian_pool):
def __call__(self, source, filename, arch):
if arch == 'all':
return url_debian_ports_pool(self, source, filename, arch)
return url_debian_pool.__call__(self, source, filename, arch)
return self.base + "pool-" + arch + "/main/" + source[0] + "/" + source + "/" + filename