diff --git a/docs b/docs index f7e6122d..210813c3 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit f7e6122dbe235ba58216c5ec13bbc3db170ad7ac +Subproject commit 210813c303bbb3dd06965a5a3e897fa9e346ffcf diff --git a/platformio/__main__.py b/platformio/__main__.py index c0ad38ac..dd07d57e 100644 --- a/platformio/__main__.py +++ b/platformio/__main__.py @@ -117,7 +117,7 @@ def main(argv=None): An unexpected error occurred. Further steps: * Verify that you have the latest version of PlatformIO using - `pip install -U platformio` command + `python -m pip install -U platformio` command * Try to find answer in FAQ Troubleshooting section https://docs.platformio.org/page/faq/index.html diff --git a/platformio/maintenance.py b/platformio/maintenance.py index f0f7a67d..3ce31609 100644 --- a/platformio/maintenance.py +++ b/platformio/maintenance.py @@ -229,7 +229,7 @@ def check_platformio_upgrade(): else: click.secho("platformio upgrade", fg="cyan", nl=False) click.secho("` or `", fg="yellow", nl=False) - click.secho("pip install -U platformio", fg="cyan", nl=False) + click.secho("python -m pip install -U platformio", fg="cyan", nl=False) click.secho("` command.", fg="yellow") click.secho("Changes: ", fg="yellow", nl=False) click.secho("https://docs.platformio.org/en/latest/history.html", fg="cyan") diff --git a/platformio/telemetry.py b/platformio/telemetry.py index 5064c3dd..9b57351f 100644 --- a/platformio/telemetry.py +++ b/platformio/telemetry.py @@ -67,6 +67,7 @@ class MeasurementProtocol: def to_payload(self): return { "client_id": self.client_id, + "user_id": f"cid:{self.client_id}", "non_personalized_ads": True, "user_properties": self._user_properties, "events": self._events,