Reduce is not a builtin function in python3. It has to be imported from functools.
Signed-off-by: Ed Bartosh <[email protected]> --- scripts/combo-layer | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/combo-layer b/scripts/combo-layer index 0644cdc..0954bb6 100755 --- a/scripts/combo-layer +++ b/scripts/combo-layer @@ -33,6 +33,7 @@ import pipes import shutil from collections import OrderedDict from string import Template +from functools import reduce __version__ = "0.2.1" -- 2.1.4 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
