Skip to content

Commit

Permalink
remove ws
Browse files Browse the repository at this point in the history
  • Loading branch information
vvas1lev committed Aug 10, 2024
1 parent 09d96ab commit 4e373e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm/ios/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -3780,7 +3780,7 @@ def _get_vlan_all_ports(self, output, _vlan_id, _vlan_name):
continue
else:
vlan_id = vlan_m.group(1)
vlan_name = _vlan_name if _vlan_name else vlan_name
vlan_name = _vlan_name.strip() if _vlan_name else vlan_name.strip()
interfaces = vlan_m.group(3) or ""
vlans[vlan_id] = {"name": vlan_name, "interfaces": []}
else:
Expand Down

0 comments on commit 4e373e9

Please sign in to comment.