diff --git a/platformio/commands/home/rpc/handlers/project.py b/platformio/commands/home/rpc/handlers/project.py index 1f13d767..795bde77 100644 --- a/platformio/commands/home/rpc/handlers/project.py +++ b/platformio/commands/home/rpc/handlers/project.py @@ -86,7 +86,7 @@ class ProjectRPC(object): name = board_id try: name = pm.board_config(board_id)['name'] - except (exception.UnknownBoard, exception.UnknownPlatform): + except exception.PlatformioException: pass boards.append({"id": board_id, "name": name})