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

(cherry picked from commit bd6a4c3d72)


Co-authored-by: Zackery Spytz <zspytz@gmail.com>
This commit is contained in:
Miss Islington (bot) 2020-04-03 10:14:16 -07:00 committed by GitHub
parent 0961dbdea2
commit d19162fe5b
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.