Commit 9b142443 authored by njqaaa's avatar njqaaa Committed by 老广

fix id_dsa check error (#458)

* fix id_dsa check error

* fix 邮件修改密码 token错误

* fix 3c8aec9 add )
parent b680a424
......@@ -180,15 +180,14 @@ def timesince(dt, since='', default="just now"):
def ssh_key_string_to_obj(text):
key_f = StringIO(text)
key = None
try:
key = paramiko.RSAKey.from_private_key(key_f)
key = paramiko.RSAKey.from_private_key( StringIO(text) )
except paramiko.SSHException:
pass
try:
key = paramiko.DSSKey.from_private_key(key_f)
key = paramiko.DSSKey.from_private_key( StringIO(text) )
except paramiko.SSHException:
pass
return key
......@@ -375,4 +374,4 @@ def sum_capacity(cap_list):
return capacity_convert(total, expect='auto')
signer = Signer()
\ No newline at end of file
signer = Signer()
......@@ -189,7 +189,7 @@ class User(AbstractUser):
return 'https://www.gravatar.com/avatar/c6812ab450230979465d7bf288eadce2a?s=120&d=identicon'
def generate_reset_token(self):
return signer.sign_t({'reset': self.id, 'email': self.email}, expires_in=3600)
return signer.sign_t({'reset': self.id, 'email': self.email}, expires_in=3600).decode('utf-8')
def to_json(self):
return OrderedDict({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment