Revize f9711600
Přidáno uživatelem Stanislav Král před asi 4 roky(ů)
src/dao/private_key_repository.py | ||
---|---|---|
57 | 57 |
f"WHERE {COL_ID} = ?") |
58 | 58 |
values = [private_key_id] |
59 | 59 |
self.cursor.execute(sql, values) |
60 |
private_key_row = self.cursor.fetchall()
|
|
60 |
private_key_row = self.cursor.fetchone()
|
|
61 | 61 |
|
62 | 62 |
private_key: PrivateKey = PrivateKey(private_key_row[0], |
63 | 63 |
private_key_row[1], |
Také k dispozici: Unified diff
Re #8472 - Fixed a bug in PrivateKeyRepository that resulted in inability to get a single private key from the repository