This commit is contained in:
Cort Buffington 2019-05-07 16:17:09 -05:00
commit 9a3b0fefb9
1 changed files with 2 additions and 3 deletions

View File

@ -148,9 +148,8 @@ def mk_full_id_dict(_path, _file, _type):
elif _type == 'tgid':
for record in records:
try:
_dict[int(record['tgid'])] = {
'NAME': record['callsign'],
'ID': record['id']
_dict[int(record['id'])] = {
'NAME': record['callsign']
}
except:
pass