diff options
author | Petr Viktorin <pviktori@redhat.com> | 2015-08-12 12:25:30 +0200 |
---|---|---|
committer | Jan Cholasta <jcholast@redhat.com> | 2015-09-01 11:42:01 +0200 |
commit | ace63f4ea55643cb99aaa444d216a6bb9ebb1ed3 (patch) | |
tree | 0b5367a1b43369dc0ea20b9e8fde91d44abed1f1 /ipalib/cli.py | |
parent | fbacc26a6a8b92f4b3570c411b186ab86cbcc1b1 (diff) | |
download | freeipa-ace63f4ea55643cb99aaa444d216a6bb9ebb1ed3.tar.gz freeipa-ace63f4ea55643cb99aaa444d216a6bb9ebb1ed3.tar.xz freeipa-ace63f4ea55643cb99aaa444d216a6bb9ebb1ed3.zip |
Replace uses of map()
In Python 2, map() returns a list; in Python 3 it returns an iterator.
Replace all uses by list comprehensions, generators, or for loops,
as required.
Reviewed-By: Christian Heimes <cheimes@redhat.com>
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r-- | ipalib/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py index bd0e7fb0a..36360008e 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -294,7 +294,7 @@ class textui(backend.Backend): for v in value: self.print_indented(format % (attr, self.encode_binary(v)), indent) else: - value = map(lambda v: self.encode_binary(v), value) + value = [self.encode_binary(v) for v in value] if len(value) > 0 and type(value[0]) in (list, tuple): # This is where we print failed add/remove members for l in value: |