Fix the map inconsistency between python2 and python3

Change-Id: I8856255e9dfe1e451c79b7baaa675e60f9401380
Story: 2003432
Task: 24628
This commit is contained in:
hazelnutsgz 2018-10-19 16:26:15 +08:00
parent c069800adc
commit ec17063117
1 changed files with 3 additions and 3 deletions

View File

@ -528,9 +528,9 @@ class InterfacesTab(tabs.TableTab):
i.host_id = host.id
port_data = \
map(list, list(zip(*[(p.get_port_display_name(),
p.neighbours) for p in host.ports if
i.uuid == p.interface_uuid])))
list(map(list, zip(*[(p.get_port_display_name(),
p.neighbours) for p in host.ports if
i.uuid == p.interface_uuid])))
if port_data:
# Default interface