diff --git a/HISTORY.rst b/HISTORY.rst index a36f0409..0df431e2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -9,6 +9,7 @@ PlatformIO Core 4 4.2.1 (2020-02-??) ~~~~~~~~~~~~~~~~~~ +* Improved support of PIO Home on card-sized PC (Raspberry Pi, etc.) (`issue #3313 `_) * Fixed "TypeError: unsupported operand type(s)" when system environment variable is used by project configuration parser (`issue #3377 `_) diff --git a/platformio/commands/home/command.py b/platformio/commands/home/command.py index 82844b7a..208354bf 100644 --- a/platformio/commands/home/command.py +++ b/platformio/commands/home/command.py @@ -57,7 +57,7 @@ def cli(port, host, no_open, shutdown_timeout): try: from autobahn.twisted.resource import WebSocketResource - except (ImportError, ModuleNotFoundError): + except: # pylint: disable=bare-except build_contrib_pysite_deps(get_core_package_dir("contrib-pysite")) from autobahn.twisted.resource import WebSocketResource