Merge pull request #143 from Dutchy-/master
Let the nmap device tracker return upper case MAC addresses.
This commit is contained in:
commit
99ccfc241c
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ class NmapDeviceScanner(object):
|
|||
else:
|
||||
mac = _arp(host.ipv4)
|
||||
if mac:
|
||||
device = Device(mac, name, host.ipv4, now)
|
||||
device = Device(mac.upper(), name, host.ipv4, now)
|
||||
self.last_results.append(device)
|
||||
_LOGGER.info("nmap scan successful")
|
||||
return True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue