batman.py: fix broken identation caused by previous commit
This commit is contained in:
parent
1fb61db963
commit
309971f1b0
1 changed files with 2 additions and 2 deletions
4
nodes.py
4
nodes.py
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue