From f2758ebe64c47c4613203b2a42ef2367dd1a832d Mon Sep 17 00:00:00 2001 From: Jordan Date: Tue, 13 Sep 2022 11:05:37 -0700 Subject: Revert "fix: onionoo might not return platform key/values" This reverts commit 207d80ca288d63829fea6dfa03981a72946567ef. Issue caused by temporary onionoo turbulence. --- 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 1b263d7..378e8dc 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.get('platform').split(' on ', 1)[1].split(' ')[0] + relay['platform'] = relay['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