mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Minor fixes
This commit is contained in:
@ -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
2
docs
Submodule docs updated: 7def3c5008...1a4a4bf127
@ -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:
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user