diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-25 11:37:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-25 11:37:16 (GMT) |
commit | 49032fa7e1cc1b6dc12b898daac24b75bae7572c (patch) | |
tree | f5d178921ec161243b966c41cc4049cb61c3aa1d | |
parent | 0fc14b373398767b4323a7bc2c2310b6218c5b74 (diff) | |
download | cpython-49032fa7e1cc1b6dc12b898daac24b75bae7572c.zip cpython-49032fa7e1cc1b6dc12b898daac24b75bae7572c.tar.gz cpython-49032fa7e1cc1b6dc12b898daac24b75bae7572c.tar.bz2 |
bpo-37396, PCbuild: Include "_d" in "Killing any running ..." message (GH-14370)
Add $(PyDebugExt) in "Killing any running python$(PyDebugExt).exe
instances...".
-rw-r--r-- | PCbuild/pyproject.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index 10b1298..0856546 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -127,7 +127,7 @@ foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses </UsingTask> <Target Name="KillPython" BeforeTargets="PrepareForBuild" Condition="'$(KillPython)' == 'true'"> - <Message Text="Killing any running python.exe instances..." Importance="high" /> + <Message Text="Killing any running python$(PyDebugExt).exe instances..." Importance="high" /> <KillPython FileName="$(OutDir)python$(PyDebugExt).exe" /> </Target> |