From 91cd0dc4b0651b16aa17c742fc6dea211ef9c5df Mon Sep 17 00:00:00 2001 From: lombardofr Date: Wed, 31 Oct 2018 09:29:53 +0100 Subject: [PATCH] FIX bug 576 Change-Id: I0c154cc730e13e860880cbb06091ed6ee5fbba11 --- instancehandler/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instancehandler/views.py b/instancehandler/views.py index e38e586..d71cd32 100644 --- a/instancehandler/views.py +++ b/instancehandler/views.py @@ -65,7 +65,7 @@ def create(request): "vimAccountId": request.POST.get('vimAccountId', ''), } if 'ssh_key' in request.POST and request.POST.get('ssh_key') != '': - ns_data["ssh_keys"] = request.POST.get('ssh_key') + ns_data["ssh_keys"] = [request.POST.get('ssh_key')] if 'config' in request.POST: ns_config = yaml.load(request.POST.get('config')) -- 2.25.1