diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-04-19 21:28:21 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-04-19 21:28:21 (GMT) |
commit | 8a12f940fe99ec087977ad07a5331520237b9cfb (patch) | |
tree | ca30d191764338a1916afc5ce4486ffffa4782bb /Lib/shutil.py | |
parent | f1c28b75e0a8577811649f427808d4cf2653cfcf (diff) | |
download | cpython-8a12f940fe99ec087977ad07a5331520237b9cfb.zip cpython-8a12f940fe99ec087977ad07a5331520237b9cfb.tar.gz cpython-8a12f940fe99ec087977ad07a5331520237b9cfb.tar.bz2 |
Fixed #8463: added missing reference to bztar in shutil's documentation.
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r-- | Lib/shutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index a94c5e1..5cfea63 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -525,7 +525,7 @@ def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, 'base_name' is the name of the file to create, minus any format-specific extension; 'format' is the archive format: one of "zip", "tar", "ztar", - or "gztar". + "bztar" or "gztar". 'root_dir' is a directory that will be the root directory of the archive; ie. we typically chdir into 'root_dir' before creating the |