[kernel] r18639 - dists/trunk/linux-2.6/debian/bin

Ben Hutchings benh at alioth.debian.org
Fri Jan 27 03:52:11 UTC 2012


Author: benh
Date: Fri Jan 27 03:52:10 2012
New Revision: 18639

Log:
Fix superclass call from url_debian_ports_pool.__call__

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

Modified:
   dists/trunk/linux-2.6/debian/bin/abiupdate.py

Modified: dists/trunk/linux-2.6/debian/bin/abiupdate.py
==============================================================================
--- dists/trunk/linux-2.6/debian/bin/abiupdate.py	Fri Jan 27 03:45:53 2012	(r18638)
+++ dists/trunk/linux-2.6/debian/bin/abiupdate.py	Fri Jan 27 03:52:10 2012	(r18639)
@@ -37,7 +37,7 @@
 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
 
 



More information about the Kernel-svn-changes mailing list