This will fix it:

diff -Nru python3-defaults-3.2.3/debpython/depends.py python3-
defaults-3.2.3/debpython/depends.py
--- python3-defaults-3.2.3/debpython/depends.py 2012-07-12 22:41:16.000000000 
+0000
+++ python3-defaults-3.2.3/debpython/depends.py 2012-10-10 18:29:46.000000000 
+0000
@@ -155,7 +155,8 @@
                         if vr[0]:  # minimum version specified
                             self.depend("python3 (>= %s)" % vrepr(vr[0]))
                         if vr[1]:  # maximum version specified
-                            self.depend("python3 (<< %s)" % vrepr(vr[1] + 1))
+                            self.depend("python3 (<< %s)" % 
+                                        vrepr((vr[1][0], int(vr[1][1]) + 1)))
 
                 for pattern in options.regexpr or []:
                     args += " -X '%s'" % pattern.replace("'", r"'\''")


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to