Minor fixes

This commit is contained in:
Ivan Kravets
2020-08-28 18:45:52 +03:00
parent 80c1774a19
commit cdbb837948
4 changed files with 6 additions and 4 deletions

View File

@ -31,7 +31,7 @@ PlatformIO Core 5
* Integration with the new **Account Management System**
- `Manage organizations and owners of an organization <https://docs.platformio.org/page/core/userguide/org/index.html>`__
- `Manage organizations <https://docs.platformio.org/page/core/userguide/org/index.html>`__
- `Manage teams and team memberships <https://docs.platformio.org/page/core/userguide/team/index.html>`__
* New **Package Management System**

2
docs

Submodule docs updated: 7def3c5008...1a4a4bf127

View File

@ -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:

View File

@ -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