From 207d80ca288d63829fea6dfa03981a72946567ef Mon Sep 17 00:00:00 2001 From: Jordan Date: Tue, 13 Sep 2022 10:58:43 -0700 Subject: fix: onionoo might not return platform key/values --- allium/lib/relays.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allium/lib/relays.py b/allium/lib/relays.py index 378e8dc..1b263d7 100644 --- a/allium/lib/relays.py +++ b/allium/lib/relays.py @@ -69,7 +69,7 @@ class Relays(): e.g. "Tor 0.3.4.9 on Linux" -> "Linux" ''' for relay in self.json['relays']: - relay['platform'] = relay['platform'].split(' on ', 1)[1].split(' ')[0] + relay['platform'] = relay.get('platform').split(' on ', 1)[1].split(' ')[0] relay['platform'] = relay['platform'].split('/')[-1] # GNU/* def _fix_missing_observed_bandwidth(self): -- cgit v1.2.3-54-g00ecf