diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-06-02 13:12:54 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 11:48:17 +0100 |
commit | f9bda8b36decb5a837adcfeb1173092401988801 (patch) | |
tree | 4b569f131193fe082e49a1ea277e769b9f7419fe /scripts/combo-layer | |
parent | 067a2156f36a12c731d49f88cf9d0b0bab7a0dcb (diff) | |
download | openembedded-core-contrib-f9bda8b36decb5a837adcfeb1173092401988801.tar.gz |
combo-layer: python3: import reduce
Reduce is not a builtin function in python3.
It has to be imported from functools.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/combo-layer')
-rwxr-xr-x | scripts/combo-layer | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/combo-layer b/scripts/combo-layer index 0644cdc0733..0954bb68506 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" |