Fix
This commit is contained in:
parent
9d17358aa1
commit
823f4e3d82
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ def parse_wifi_map(map_path):
|
|||
#print('\t\tdevice = {}'.format(device))
|
||||
for identity in identities:
|
||||
if identity['mac'] == device:
|
||||
filtered_identities |= (identity['name'])
|
||||
filtered_identities |= {identity['name']}
|
||||
|
||||
#print('\n\nSSID count: {}, Device count: {}'.format(len(wifi_map), len(devices)))
|
||||
print('\nFiltered identities:')
|
||||
|
@ -56,7 +56,7 @@ if __name__ == '__main__':
|
|||
filtered_identities = parse_wifi_map(wifi_map_path)
|
||||
|
||||
# build request
|
||||
json_payload = json.dumps(filtered_identities).encode("utf-8")
|
||||
json_payload = json.dumps(list(filtered_identities)).encode("utf-8")
|
||||
|
||||
signature = hmac.new(
|
||||
key=bytes(WEBHOOK_SECRET, "utf-8"),
|
||||
|
|
Loading…
Reference in a new issue