From ec17063117c4274e9691acc921f7d18168f2d31f Mon Sep 17 00:00:00 2001 From: hazelnutsgz Date: Fri, 19 Oct 2018 16:26:15 +0800 Subject: [PATCH] Fix the map inconsistency between python2 and python3 Change-Id: I8856255e9dfe1e451c79b7baaa675e60f9401380 Story: 2003432 Task: 24628 --- .../starlingx_dashboard/dashboards/admin/inventory/tabs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/starlingx-dashboard/starlingx-dashboard/starlingx_dashboard/dashboards/admin/inventory/tabs.py b/starlingx-dashboard/starlingx-dashboard/starlingx_dashboard/dashboards/admin/inventory/tabs.py index 402efb05..71b6c8d6 100755 --- a/starlingx-dashboard/starlingx-dashboard/starlingx_dashboard/dashboards/admin/inventory/tabs.py +++ b/starlingx-dashboard/starlingx-dashboard/starlingx_dashboard/dashboards/admin/inventory/tabs.py @@ -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