diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-10 01:25:29 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-10 01:25:29 (GMT) |
commit | 2e82bf824ec843f1d34b0219e94bef4f699a0492 (patch) | |
tree | 3525753cc2f7454ec72be7796b0cafde79d3059c /PC | |
parent | 3b822d6c89ac6dffe5304adf0ce77c2d42406338 (diff) | |
parent | f2bdb6b8ca9e1584fae71ab27e1ed2a93861095a (diff) | |
download | cpython-2e82bf824ec843f1d34b0219e94bef4f699a0492.zip cpython-2e82bf824ec843f1d34b0219e94bef4f699a0492.tar.gz cpython-2e82bf824ec843f1d34b0219e94bef4f699a0492.tar.bz2 |
Issue #27705: Update message in validate_ucrtbase.py
Diffstat (limited to 'PC')
-rw-r--r-- | PC/validate_ucrtbase.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/PC/validate_ucrtbase.py b/PC/validate_ucrtbase.py index 6145d59..0ba54ab 100644 --- a/PC/validate_ucrtbase.py +++ b/PC/validate_ucrtbase.py @@ -82,7 +82,8 @@ print('{} is version {}.{}.{}.{}'.format(name.value, *ver)) if ver < (10, 0, 10586): print('WARN: ucrtbased contains known issues. ' - 'Please update Visual Studio or the Windows SDK.') + 'Please update the Windows 10 SDK.') print('See:') - print(' http://bugs.python.org/issue26624') + print(' http://bugs.python.org/issue27705') + print(' https://developer.microsoft.com/en-US/windows/downloads/windows-10-sdk') sys.exit(1) |