update_link had wrong arg order

This commit is contained in:
stuartmarsden 2018-05-20 22:21:19 +04:00 committed by GitHub
parent 088260abf2
commit 67a78828c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -378,7 +378,7 @@ class EmuSession(Session):
if node_two: if node_two:
node_two.lock.release() node_two.lock.release()
def update_link(self, node_one_id, node_two_id, link_options, interface_one_id=None, interface_two_id=None): def update_link(self, node_one_id, node_two_id, interface_one_id=None, interface_two_id=None, link_options=LinkOptions()):
""" """
Update link information between nodes. Update link information between nodes.