From cdbb8379489675f2bb103972b8ecca9021ec060b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 28 Aug 2020 18:45:52 +0300 Subject: [PATCH] Minor fixes --- HISTORY.rst | 2 +- docs | 2 +- platformio/telemetry.py | 5 ++++- platformio/util.py | 1 - 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 2d37cb6b..78a67f26 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -31,7 +31,7 @@ PlatformIO Core 5 * Integration with the new **Account Management System** - - `Manage organizations and owners of an organization `__ + - `Manage organizations `__ - `Manage teams and team memberships `__ * New **Package Management System** diff --git a/docs b/docs index 7def3c50..1a4a4bf1 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 7def3c5008c99aae8f24984556e2a057195224e9 +Subproject commit 1a4a4bf127ec0651f7ca299e031379ea96734139 diff --git a/platformio/telemetry.py b/platformio/telemetry.py index 4c5a6706..68392f98 100644 --- a/platformio/telemetry.py +++ b/platformio/telemetry.py @@ -145,13 +145,16 @@ class MeasurementProtocol(TelemetryBase): cmd_path = args[:1] if args[0] in ( + "access", "account", "device", - "platform", + "org", "package", + "platform", "project", "settings", "system", + "team" ): cmd_path = args[:2] if args[0] == "lib" and len(args) > 1: diff --git a/platformio/util.py b/platformio/util.py index f950a364..6da4708b 100644 --- a/platformio/util.py +++ b/platformio/util.py @@ -29,7 +29,6 @@ import click from platformio import __version__, exception, proc from platformio.compat import PY2, WINDOWS from platformio.fs import cd, load_json # pylint: disable=unused-import -from platformio.package.version import pepver_to_semver # pylint: disable=unused-import from platformio.proc import exec_command # pylint: disable=unused-import