bpo-40131: Fix source and target order in zipapp example (GH-19290)

This commit is contained in:
Zackery Spytz 2020-04-03 10:36:29 -06:00 committed by GitHub
parent 76db37b1d3
commit bd6a4c3d72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ Pack up a directory into an archive, and run it.
The same can be done using the :func:`create_archive` function::
>>> import zipapp
>>> zipapp.create_archive('myapp.pyz', 'myapp')
>>> zipapp.create_archive('myapp', 'myapp.pyz')
To make the application directly executable on POSIX, specify an interpreter
to use.