key id may start with 0x

This commit is contained in:
Jude Nelson
2018-10-29 12:16:06 -04:00
parent f81e845494
commit a02b7e4284

View File

@@ -70,6 +70,9 @@ def check_gpg2_keys(gpg2_path, key_ids):
missing = []
for key_id in key_ids:
if key_id.startswith('0x'):
key_id = key_id[2:]
found = False
for line in out.split('\n'):
line = line.strip()