diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-03-25 04:25:16 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-03-25 04:25:16 (GMT) |
commit | 102f72cf1a414f507951cf4988d51cffb8f4e2b4 (patch) | |
tree | 4836b089a9dd96f91044ae82d76030b95e39c287 /Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | |
parent | fef9c1b368ce0a59772378798d203efc5f836413 (diff) | |
download | cpython-102f72cf1a414f507951cf4988d51cffb8f4e2b4.zip cpython-102f72cf1a414f507951cf4988d51cffb8f4e2b4.tar.gz cpython-102f72cf1a414f507951cf4988d51cffb8f4e2b4.tar.bz2 |
Adds pydoc shortcut, Edit with IDLE menu, moves redist folder into externals and fixes test script.
Diffstat (limited to 'Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp')
-rw-r--r-- | Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp index 547c9b8..c4b5253 100644 --- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp +++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp @@ -742,6 +742,8 @@ public: // IBootstrapperApplication } else { *pRequestedState = BOOTSTRAPPER_FEATURE_STATE_ABSENT; } + } else { + *pRequestedState = BOOTSTRAPPER_FEATURE_STATE_LOCAL; } return CheckCanceled() ? IDCANCEL : IDNOACTION; } |