combo-layer: python3: import reduce

Reduce is not a builtin function in python3.
It has to be imported from functools.

(From OE-Core rev: f9bda8b36decb5a837adcfeb1173092401988801)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ed Bartosh 2016-06-02 13:12:54 +03:00 committed by Richard Purdie
parent 64987b2e58
commit a4045424af
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ import pipes
import shutil
from collections import OrderedDict
from string import Template
from functools import reduce
__version__ = "0.2.1"