alfred.py: better ask for forgiveness, than permission
This commit is contained in:
parent
3291b2b6ba
commit
e098cd8d77
12
alfred.py
12
alfred.py
|
@ -24,11 +24,13 @@ def aliases():
|
|||
alias = {}
|
||||
for node in nodeinfo():
|
||||
node_alias = {}
|
||||
if 'location' in node:
|
||||
try:
|
||||
node_alias['gps'] = str(node['location']['latitude']) + ' ' + str(node['location']['longitude'])
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
try:
|
||||
# TODO: better pass lat, lng as a tuple?
|
||||
node_alias['gps'] = "{lat}\x20{lng}".format(lat=node['location']['latitude'],
|
||||
lng=node['location']['longitude'])
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
try:
|
||||
node_alias['firmware'] = node['software']['firmware']['release']
|
||||
|
|
Loading…
Reference in a new issue