# HG changeset patch # User Matt Harbison # Date 1612141012 18000 # Node ID e933e66153f3d3409c54c39809408cdb46bb42fa # Parent 8deab876fb59c19f13e0a99d8f9e7b771fdc60f5 packaging: replace a documentation reference to `python3` on Windows Sadly, there's not `python3.exe` on Windows. Differential Revision: https://phab.mercurial-scm.org/D9937 diff -r 8deab876fb59 -r e933e66153f3 contrib/packaging/inno/readme.rst --- a/contrib/packaging/inno/readme.rst Wed Jan 27 10:29:21 2021 -0800 +++ b/contrib/packaging/inno/readme.rst Sun Jan 31 19:56:52 2021 -0500 @@ -34,7 +34,7 @@ Next, invoke ``packaging.py`` to produce an Inno installer. You will need to supply the path to the Python interpreter to use.:: - $ python3.exe contrib\packaging\packaging.py \ + $ py -3 contrib\packaging\packaging.py \ inno --python c:\python27\python.exe .. note:: diff -r 8deab876fb59 -r e933e66153f3 contrib/packaging/wix/readme.rst --- a/contrib/packaging/wix/readme.rst Wed Jan 27 10:29:21 2021 -0800 +++ b/contrib/packaging/wix/readme.rst Sun Jan 31 19:56:52 2021 -0500 @@ -40,7 +40,7 @@ Next, invoke ``packaging.py`` to produce an MSI installer. You will need to supply the path to the Python interpreter to use.:: - $ python3 contrib\packaging\packaging.py \ + $ py -3 contrib\packaging\packaging.py \ wix --python c:\python27\python.exe .. note::