summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-08-21 14:29:18 +0200
committerÉric Araujo <merwok@netwok.org>2011-08-21 14:29:18 +0200
commit7cc1fb073df5cd4d1c6790d14b8767d3690322cc (patch)
tree515287e9b3412423e86dd594f97cc68e983def7d
parentd31829329590acc98a94a79b1c5f1428235867e8 (diff)
downloadcpython-git-7cc1fb073df5cd4d1c6790d14b8767d3690322cc.tar.gz
Add missing name in shutil
-rw-r--r--Lib/shutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index d2e2dc52fc..7b59c6bf10 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