From 209e3ac20fa69c7352e28b2aeeb2898fbbbf87d4 Mon Sep 17 00:00:00 2001 From: JGoutin Date: Tue, 12 Jun 2018 20:39:32 +0200 Subject: Fix "Microsoft Visual C++ Build Tools" link --- setuptools/msvc.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setuptools/msvc.py b/setuptools/msvc.py index 5e20b3f1..b9c472f1 100644 --- a/setuptools/msvc.py +++ b/setuptools/msvc.py @@ -232,8 +232,7 @@ def _augment_exception(exc, version, arch=''): elif version >= 14.0: # For VC++ 14.0 Redirect user to Visual C++ Build Tools message += (' Get it with "Microsoft Visual C++ Build Tools": ' - r'http://landinghub.visualstudio.com/' - 'visual-cpp-build-tools') + r'https://visualstudio.microsoft.com/downloads/') exc.args = (message, ) -- cgit v1.2.3 From baa9aea1de4351b96e6e677a8cd95bc5f122087e Mon Sep 17 00:00:00 2001 From: JGoutin Date: Tue, 12 Jun 2018 20:49:08 +0200 Subject: Create 1388.change.rst --- changelog.d/1388.change.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/1388.change.rst diff --git a/changelog.d/1388.change.rst b/changelog.d/1388.change.rst new file mode 100644 index 00000000..b98dc966 --- /dev/null +++ b/changelog.d/1388.change.rst @@ -0,0 +1 @@ +Fixed "Microsoft Visual C++ Build Tools" link in exception when Visual C++ not found. -- cgit v1.2.3