strip instead of trim
This commit is contained in:
parent
662219f524
commit
ee5150dc6e
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class UserHostingKeyForm(forms.ModelForm):
|
|||
if 'generate' in self.request.POST:
|
||||
return self.data.get('public_key')
|
||||
KEY_ERROR_MESSAGE = _("Please input a proper SSH key")
|
||||
openssh_pubkey_str = self.data.get('public_key').trim()
|
||||
openssh_pubkey_str = self.data.get('public_key').strip()
|
||||
|
||||
with tempfile.NamedTemporaryFile(delete=True) as tmp_public_key_file:
|
||||
tmp_public_key_file.write(openssh_pubkey_str.encode('utf-8'))
|
||||
|
|
Loading…
Reference in a new issue