summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-08-21 12:29:18 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-08-21 12:29:18 (GMT)
commit7cc1fb073df5cd4d1c6790d14b8767d3690322cc (patch)
tree515287e9b3412423e86dd594f97cc68e983def7d /Lib
parentd31829329590acc98a94a79b1c5f1428235867e8 (diff)
downloadcpython-7cc1fb073df5cd4d1c6790d14b8767d3690322cc.zip
cpython-7cc1fb073df5cd4d1c6790d14b8767d3690322cc.tar.gz
cpython-7cc1fb073df5cd4d1c6790d14b8767d3690322cc.tar.bz2
Add missing name in shutil
Diffstat (limited to 'Lib')
-rw-r--r--Lib/shutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index d2e2dc5..7b59c6b 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -34,7 +34,7 @@ __all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2",
"ExecError", "make_archive", "get_archive_formats",
"register_archive_format", "unregister_archive_format",
"get_unpack_formats", "register_unpack_format",
- "unregister_unpack_format", "unpack_archive"]
+ "unregister_unpack_format", "unpack_archive", "ignore_patterns"]
class Error(EnvironmentError):
pass