X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=instancehandler%2Fviews.py;h=d71cd3278f17ea46efa346ce7c65ef385e8e15d8;hb=refs%2Fchanges%2F95%2F6995%2F1;hp=e38e586f468f70168ffc7d4ac15e0c9abab04a94;hpb=e6eb7437628e932ef823800b5a8380790a6b22d7;p=osm%2FLW-UI.git 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'))