[gnome-continuous-yocto/gnomeostree-3.28-rocko: 1287/8267] useradd-staticids: use map() instead of imap()
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-continuous-yocto/gnomeostree-3.28-rocko: 1287/8267] useradd-staticids: use map() instead of imap()
- Date: Sat, 16 Dec 2017 21:36:58 +0000 (UTC)
commit 627d01997fcf6a0581d88047735769ffb2592b82
Author: George McCollister <george mccollister gmail com>
Date: Tue Jul 12 14:10:54 2016 -0500
useradd-staticids: use map() instead of imap()
In Python3 the itertools module's imap function has been migrated to the
globalname space as map(). Calling itertools.imap() will fail because it
no longer exists.
(From OE-Core rev: da7a2c7b00b40a8759dbe9f4ab6df3e337e3d6b6)
Signed-off-by: George McCollister <george mccollister gmail com>
Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>
meta/classes/useradd-staticids.bbclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/meta/classes/useradd-staticids.bbclass b/meta/classes/useradd-staticids.bbclass
index b6e498c..149245b 100644
--- a/meta/classes/useradd-staticids.bbclass
+++ b/meta/classes/useradd-staticids.bbclass
@@ -43,7 +43,7 @@ def update_useradd_static_config(d):
if fields[0] not in id_table:
id_table[fields[0]] = fields
else:
- id_table[fields[0]] = list(itertools.imap(lambda x, y: x or y, fields,
id_table[fields[0]]))
+ id_table[fields[0]] = list(map(lambda x, y: x or y, fields, id_table[fields[0]]))
except IOError as e:
if e.errno == errno.ENOENT:
pass
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]