diff --git a/platformio/util.py b/platformio/util.py index 5285b151..032f8d38 100644 --- a/platformio/util.py +++ b/platformio/util.py @@ -342,7 +342,8 @@ def get_api_result(path, params=None, data=None): raise exception.APIRequestError(e) except requests.exceptions.ConnectionError: raise exception.APIRequestError( - "Could not connect to PlatformIO Registry Service") + "Could not connect to PlatformIO Registry Service. " + "Please try later.") except ValueError: raise exception.APIRequestError( "Invalid response: %s" % r.text.encode("utf-8"))