Merge pull request #63 from trainman419/mac_upper_dev

Convert MAC addresses to uppercase on load
This commit is contained in:
Paulus Schoutsen
2015-03-15 14:46:01 -07:00

View File

@@ -236,7 +236,7 @@ class DeviceTracker(object):
try:
for row in csv.DictReader(inp):
device = row['device']
device = row['device'].upper()
if row['track'] == '1':
if device in self.tracked: