Skip to content

Commit

Permalink
fix for vlan bug
Browse files Browse the repository at this point in the history
  • Loading branch information
schwark committed Aug 11, 2022
1 parent 7055255 commit 895652d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def get_item_subtitle(item, type, device_map):
subtitle += u' • '+device_map[item['sw_mac']]['name']+' #'+str(item['sw_port'])
if 'radius' == type:
if 'vlan' in item:
subtitle += u' • vlan '+item['vlan']
subtitle += u' • vlan '+str(item['vlan'])
else:
subtitle += u' • no vlan'
if 'tunnel_type' in item:
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.6
1.1.7

0 comments on commit 895652d

Please sign in to comment.