From aebba5f1c1ffa1de501caeb2c571995d7605a3eb Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 29 Jan 2016 14:28:56 +0200 Subject: [PATCH] Minor fix to error message --- platformio/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"))