Skip to content

Commit a4ee7ab

Browse files
bpo-38534: Replace wrong KB number references (pythonGH-16955)
(cherry picked from commit 794616f) Co-authored-by: benedwards14 <53377856+benedwards14@users.noreply.github.com>
1 parent 07eee64 commit a4ee7ab

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Doc/whatsnew/3.8.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1972,7 +1972,7 @@ Changes in the Python API
19721972
resolution. If your application relies on these mechanisms, you should check
19731973
for :func:`~os.add_dll_directory` and if it exists, use it to add your DLLs
19741974
directory while loading your library. Note that Windows 7 users will need to
1975-
ensure that Windows Update KB2533625 has been installed (this is also verified
1975+
ensure that Windows Update KB2533623 has been installed (this is also verified
19761976
by the installer).
19771977
(Contributed by Steve Dower in :issue:`36085`.)
19781978

Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3013,8 +3013,8 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
30133013
} else if (IsWindowsVersionOrGreater(6, 1, 1)) {
30143014
HMODULE hKernel32 = GetModuleHandleW(L"kernel32");
30153015
if (hKernel32 && !GetProcAddress(hKernel32, "AddDllDirectory")) {
3016-
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2008 R2 without KB2533625");
3017-
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533625 update is required to continue.");
3016+
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2008 R2 without KB2533623");
3017+
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533623 update is required to continue.");
30183018
/* The "MissingSP1" error also specifies updates are required */
30193019
LocGetString(_wixLoc, L"#(loc.FailureWS2K8R2MissingSP1)", &pLocString);
30203020
} else {
@@ -3044,8 +3044,8 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
30443044
} else if (IsWindows7SP1OrGreater()) {
30453045
HMODULE hKernel32 = GetModuleHandleW(L"kernel32");
30463046
if (hKernel32 && !GetProcAddress(hKernel32, "AddDllDirectory")) {
3047-
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows 7 SP1 without KB2533625");
3048-
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533625 update is required to continue.");
3047+
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows 7 SP1 without KB2533623");
3048+
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533623 update is required to continue.");
30493049
/* The "MissingSP1" error also specifies updates are required */
30503050
LocGetString(_wixLoc, L"#(loc.FailureWin7MissingSP1)", &pLocString);
30513051
} else {

0 commit comments

Comments
 (0)