diff options
author | Éric Araujo <merwok@netwok.org> | 2010-12-15 20:26:30 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-12-15 20:26:30 (GMT) |
commit | 4433a5fdc04bf0ec31030af91e74706734fa02e7 (patch) | |
tree | e8427d49e7f210f4bb5d591afb5353e2bdd042e6 /Doc/distutils | |
parent | 17a59252e8505439decbdf80c73d2465288f65c7 (diff) | |
download | cpython-4433a5fdc04bf0ec31030af91e74706734fa02e7.zip cpython-4433a5fdc04bf0ec31030af91e74706734fa02e7.tar.gz cpython-4433a5fdc04bf0ec31030af91e74706734fa02e7.tar.bz2 |
Fix wrong name in docstring and doc (#10693). Original patch by Eli Bendersky.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 8a68417..a7dc68e 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -888,7 +888,7 @@ tarballs or zipfiles. .. function:: make_zipfile(base_name, base_dir[, verbose=0, dry_run=0]) Create a zip file from all files in and under *base_dir*. The output zip file - will be named *base_dir* + :file:`.zip`. Uses either the :mod:`zipfile` Python + will be named *base_name* + :file:`.zip`. Uses either the :mod:`zipfile` Python module (if available) or the InfoZIP :file:`zip` utility (if installed and found on the default search path). If neither tool is available, raises :exc:`DistutilsExecError`. Returns the name of the output zip file. |