From fd0b45afdb9efcae0921e6b60b3229f3992364c8 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 15 Dec 2017 02:42:38 +0200 Subject: [PATCH] Use short version of a link for IOError exception --- platformio/downloader.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/platformio/downloader.py b/platformio/downloader.py index 737b21e4..4dc84a83 100644 --- a/platformio/downloader.py +++ b/platformio/downloader.py @@ -87,9 +87,7 @@ class FileDownloader(object): f.write(next(itercontent)) except IOError as e: click.secho( - "IOError: Please read -> http://docs.platformio.org" - "/en/latest/ide/vscode.html" - "#packagemanager-is-unable-to-install-tool", + "Error: Please read http://bit.ly/package-manager-ioerror", fg="red", err=True) raise e