Merge pull request #46 from ffac/legacy

Fixes a bug that will add a node with upercase letters in its id to the ...
This commit is contained in:
Nils Schneider 2015-03-30 21:23:36 +02:00
commit 39f358a0eb

View file

@ -70,7 +70,7 @@ class NodeDB:
def maybe_node_by_id(self, mac):
for node in self._nodes:
if mac.lower() == node.id:
if mac.lower() == node.id.lower():
return node
raise KeyError