From 1c40df1f3c8175e25ce107a2dc7951fd71dd3786 Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Fri, 27 Jan 2012 03:52:10 +0000 Subject: [PATCH] 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 --- debian/bin/abiupdate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/bin/abiupdate.py b/debian/bin/abiupdate.py index a4bb0ead2..6ce6b61ce 100755 --- a/debian/bin/abiupdate.py +++ b/debian/bin/abiupdate.py @@ -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