From 4a1bee1fc9a724fc86d2d67fafaa366a1c4dc20b Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 18 Dec 2011 14:56:48 +0100 Subject: [PATCH] Import reduce via functools In Python3 reduce must be imported from functools, python2.6 supports the import as a "nop". Signed-off-by: Niels Thykier --- britney.py | 1 + 1 file changed, 1 insertion(+) diff --git a/britney.py b/britney.py index 1c5dc26..4ebe704 100755 --- a/britney.py +++ b/britney.py @@ -194,6 +194,7 @@ from excuse import Excuse from migrationitem import MigrationItem, HintItem from hints import HintCollection from britney import buildSystem +from functools import reduce __author__ = 'Fabio Tranchitella and the Debian Release Team' __version__ = '2.0'