From 67a78828c3166be7fe2cfaa4aad58a9ce8c37376 Mon Sep 17 00:00:00 2001 From: stuartmarsden Date: Sun, 20 May 2018 22:21:19 +0400 Subject: [PATCH] update_link had wrong arg order --- daemon/core/emulator/coreemu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/core/emulator/coreemu.py b/daemon/core/emulator/coreemu.py index 6712227c..8fa6ffb9 100644 --- a/daemon/core/emulator/coreemu.py +++ b/daemon/core/emulator/coreemu.py @@ -378,7 +378,7 @@ class EmuSession(Session): if node_two: 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.