2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-05 21:20:51 +00:00
This commit is contained in:
quadrismegistus 2020-09-13 21:25:17 +01:00
parent ad7d5fb0b7
commit 4ff4bbec99

View File

@ -13,7 +13,8 @@ def locate_an_operator_somehow(str_or_byte_or_obj):
if type(str_or_byte_or_obj)==bytes: return locate_an_operator(pubkey=str_or_byte_or_obj)
raise KomradeException(type(str_or_byte_or_obj),'???')
def comlink(name_or_pubkey): return locate_an_operator_somehow(x)
def comlink(name_or_pubkey):
return locate_an_operator_somehow(name_or_pubkey)
PHONEBOOK = {}