Files
python/meshtastic
Kevin Hester d35423a816 strip \n if it was incorrectly added by the device
+        # Devices should _not_ be including a newline at the end of each log-line str (especially when
+        # encapsulated as a LogRecord).  But to cope with old device loads, we check for that and fix it here:
+        if line.endswith("\n"):
+            line = line[:-1]

Also: auto reformatting per our trunk formatting rules.
2024-07-07 14:57:44 -07:00
..
2024-06-27 16:37:58 -07:00
2020-04-27 16:44:41 -07:00
2024-04-10 17:42:44 +01:00
2023-03-31 20:09:59 +02:00
2024-03-29 18:38:25 -07:00