batman.py: fix broken identation caused by previous commit

influxdb
Martin Weinelt 2015-03-24 17:58:06 +01:00
parent 1fb61db963
commit 309971f1b0
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ def prune_nodes(nodes, now, days):
if delta >= days * 86400:
prune.append(node_id)
for prune_key in prune:
del nodes[prune_key]
for node_id in prune:
del nodes[node_id]
def mark_online(node, now):