Revert "Decode key returned from db into unicode."

This reverts commit 9e63f0b303
This commit is contained in:
Monty Taylor 2012-05-27 16:16:55 +00:00 committed by Gerrit Code Review
parent 9e63f0b303
commit 352b80f923

View File

@ -335,7 +335,7 @@ for (username, user_details) in users.items():
cur.execute("""select ssh_public_key from account_ssh_keys where
account_id = %s""", account_id)
db_keys = [r[0].strip().decode('utf-8') for r in cur.fetchall()]
db_keys = [r[0].strip() for r in cur.fetchall()]
if key.strip() not in db_keys:
cur.execute("""select max(seq)+1 from account_ssh_keys