From 9f6f830418f58ea96f04fdaf0ee354288a9355b3 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 13 Dec 2016 09:36:45 +0100 Subject: [PATCH] Fix TypeError: __new__() got multiple values for argument 'node_type' Fix #827 --- gns3server/handlers/api/compute/dynamips_vm_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/handlers/api/compute/dynamips_vm_handler.py b/gns3server/handlers/api/compute/dynamips_vm_handler.py index 78a7f6cb..c8b1f318 100644 --- a/gns3server/handlers/api/compute/dynamips_vm_handler.py +++ b/gns3server/handlers/api/compute/dynamips_vm_handler.py @@ -72,7 +72,7 @@ class DynamipsVMHandler: vm = yield from dynamips_manager.create_node(request.json.pop("name"), request.match_info["project_id"], request.json.get("node_id"), - request.json.get("dynamips_id"), + dynamips_id=request.json.get("dynamips_id"), platform=platform, console=request.json.get("console"), aux=request.json.get("aux"),