Commit b4cc6236 authored by Vincent Pelletier's avatar Vincent Pelletier

cli: Fix key_id used with no-encoding stdout on python2.

parent 05893598
......@@ -962,11 +962,11 @@ def key_id(argv=None):
with open(key_path, 'rb') as key_file:
print(
key_path,
utils.toUnicode(hexlify(
hexlify(
x509.SubjectKeyIdentifier.from_public_key(
utils.load_privatekey(key_file.read()).public_key(),
).digest,
)),
),
)
for backup_path in args.backup:
print(backup_path)
......@@ -979,4 +979,4 @@ def key_id(argv=None):
backup_file.read(struct.calcsize('<I')),
)
for key_entry in json.loads(backup_file.read(header_len))['key_list']:
print(b' ', key_entry['id'])
print(b' ', key_entry['id'].encode('utf-8'))
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