diff --git a/selfdrive/locationd/test/print_gps_stats.py b/selfdrive/locationd/test/print_gps_stats.py index b5e89993a3..cfddb7f8b8 100755 --- a/selfdrive/locationd/test/print_gps_stats.py +++ b/selfdrive/locationd/test/print_gps_stats.py @@ -14,7 +14,7 @@ if __name__ == "__main__": for m in ug.measurementReport.measurements: cnos.append(m.cno) print("Sats: %d Accuracy: %.2f m cnos" % (ug.measurementReport.numMeas, gle.accuracy), sorted(cnos)) - except: + except Exception: pass sm.update() time.sleep(0.1)