Fixed MAC address pattern

master
Thomas Hooge 2019-11-04 15:27:03 +01:00
parent e26619a4a1
commit c0cce374c6
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class Batman(object):
self.environ = env
# compile regular expressions only once on startup
self.mac_addr_pattern = re.compile(r'(([a-z0-9]{2}:){5}[a-z0-9]{2})')
self.mac_addr_pattern = re.compile(r'(([a-f0-9]{2}:){5}[a-f0-9]{2})')
def vis_data(self):
return self.vis_data_batadv_vis()