# HG changeset patch # User Matt Harbison # Date 2021-02-01 00:56:52 # 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 --git a/contrib/packaging/inno/readme.rst b/contrib/packaging/inno/readme.rst --- a/contrib/packaging/inno/readme.rst +++ b/contrib/packaging/inno/readme.rst @@ -34,7 +34,7 @@ From the prompt, change to the Mercurial 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 --git a/contrib/packaging/wix/readme.rst b/contrib/packaging/wix/readme.rst --- a/contrib/packaging/wix/readme.rst +++ b/contrib/packaging/wix/readme.rst @@ -40,7 +40,7 @@ From the prompt, change to the Mercurial 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::