Merge branch 'develop' of github.com:ungleich/dynamicweb into develop
This commit is contained in:
commit
38970e9353
3 changed files with 10 additions and 3 deletions
|
|
@ -369,7 +369,7 @@ class SSHKeyCreateView(LoginRequiredMixin, FormView):
|
|||
manager = OpenNebulaManager()
|
||||
|
||||
# Get user ssh key
|
||||
public_key = form.cleaned_data.get('public_key')
|
||||
public_key = form.cleaned_data.get('public_key', '').decode('utf-8')
|
||||
# Add ssh key to user
|
||||
try:
|
||||
manager.add_public_key(user=owner, public_key=public_key, merge=True)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue