From 7b80e176644ec20392bae4a18a9495b546e81543 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 28 Apr 2015 13:13:17 +0100 Subject: [PATCH] Improve handling of platforms commands for telemetry --- platformio/telemetry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/telemetry.py b/platformio/telemetry.py index 55b26f21..87762dbd 100644 --- a/platformio/telemetry.py +++ b/platformio/telemetry.py @@ -96,7 +96,7 @@ class MeasurementProtocol(TelemetryBase): if not args: return - if args[0] in ("lib", "serialports", "settings"): + if args[0] in ("lib", "platforms", "serialports", "settings"): cmd_path = args[:2] else: cmd_path = args[:1]