Skip to content

Commit b8eccf7

Browse files
authored
Update zipimport.rst
1 parent 24788eb commit b8eccf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/zipimport.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Here is an example that imports a module from a ZIP archive - note that the
188188

189189
.. code-block:: shell-session
190190
$ unzip -l example_archive.zip
191-
Archive: example.zip
191+
Archive: example_archive.zip
192192
Length Date Time Name
193193
-------- ---- ---- ----
194194
8467 05-11-25 12:29 example.py
@@ -201,5 +201,5 @@ Here is an example that imports a module from a ZIP archive - note that the
201201
>>> sys.path.insert(0, 'example_archive.zip') # Add .zip file to front of path
202202
>>> import example
203203
>>> example.__file__
204-
'example.zip/example.py'
204+
'example_archive.zip/example.py'
205205

0 commit comments

Comments
 (0)