Skip to content
Snippets Groups Projects
Commit d34c6350 authored by inso's avatar inso
Browse files

Fixed certifiers parsing

parent c1cea38b
Branches
Tags
No related merge requests found
...@@ -288,7 +288,8 @@ class Person(object): ...@@ -288,7 +288,8 @@ class Person(object):
for result in data['results']: for result in data['results']:
if result["pubkey"] == self.pubkey: if result["pubkey"] == self.pubkey:
for certifier in [uid['others'] for uid in result['uids']]: for uid in result['uids']:
for certifier in uid['others']:
# add a certifier # add a certifier
certifier['uid'] = uid certifier['uid'] = uid
certifier['cert_time'] = dict() certifier['cert_time'] = dict()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment