From b2cec106011f9d74524f50722fd75bd419aee7aa Mon Sep 17 00:00:00 2001 From: Michael Bisbjerg Date: Sun, 19 Mar 2023 20:11:18 +0100 Subject: [PATCH] Fix outdated filter string in platformio_api (#4587) --- esphome/platformio_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/platformio_api.py b/esphome/platformio_api.py index ef62e62ce7..c46a3fc767 100644 --- a/esphome/platformio_api.py +++ b/esphome/platformio_api.py @@ -47,7 +47,7 @@ FILTER_PLATFORMIO_LINES = [ r"CONFIGURATION: https://docs.platformio.org/.*", r"DEBUG: Current.*", r"LDF Modes:.*", - r"LDF: Library Dependency Finder -> http://bit.ly/configure-pio-ldf.*", + r"LDF: Library Dependency Finder -> https://bit.ly/configure-pio-ldf.*", f"Looking for {IGNORE_LIB_WARNINGS} library in registry", f"Warning! Library `.*'{IGNORE_LIB_WARNINGS}.*` has not been found in PlatformIO Registry.", f"You can ignore this message, if `.*{IGNORE_LIB_WARNINGS}.*` is a built-in library.*",