fix handling of wiki entries with multiple nodes

This commit is contained in:
Nils Schneider 2012-09-05 00:59:13 +02:00
parent ba866a65ce
commit c8a4882f38

View file

@ -267,23 +267,25 @@ class NodeDB:
nodes = zip_longest(node['MAC'], node['GPS'], node['Knotenname']) nodes = zip_longest(node['MAC'], node['GPS'], node['Knotenname'])
for data in nodes: for data in nodes:
if not data[0]: mac = data[0].strip()
if not mac:
continue continue
try: try:
node = self.maybe_node_by_fuzzy_mac(data[0]) node = self.maybe_node_by_fuzzy_mac(mac)
except KeyError: except KeyError:
node = Node() node = Node()
self._nodes.append(node) self._nodes.append(node)
node.add_mac(data[0]) node.add_mac(mac)
if data[1]: if data[1]:
node.gps = data[1] node.gps = data[1].strip()
if data[2]: if data[2]:
node.name = data[2] node.name = data[2].strip()
# compares two MACs and decides whether they are # compares two MACs and decides whether they are
# similar and could be from the same node # similar and could be from the same node