catch CalledProcessError in uploader wifi check

pull/984/head
Willem Melching 6 years ago
parent 79122ae662
commit 6adbe24d4c
  1. 2
      selfdrive/loggerd/uploader.py

@ -71,7 +71,7 @@ def is_on_wifi():
if result is None:
return True
return 'WIFI' in result
except AttributeError:
except (AttributeError, subprocess.CalledProcessError):
return False
def is_on_hotspot():

Loading…
Cancel
Save