Multiple style fixes

This commit is contained in:
Roman Zeyde
2021-10-16 22:01:00 +03:00
parent 6d55512619
commit ee4b1fcdb6
7 changed files with 7 additions and 7 deletions

View File

@@ -190,7 +190,7 @@ def export_public_key(vk, label):
key_type, blob = serialize_verifying_key(vk)
log.debug('fingerprint: %s', fingerprint(blob))
b64 = base64.b64encode(blob).decode('ascii')
return u'{} {} {}\n'.format(key_type.decode('ascii'), b64, label)
return '{} {} {}\n'.format(key_type.decode('ascii'), b64, label)
def import_public_key(line):