summaryrefslogtreecommitdiffstats
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)
commit5fa8e7a559be10233c035ac2f29a9a87bf2c4eb7 (patch)
tree93100cab0d06a2d424c4400f8e72a4edb826f95b
parent52b201f0dfe6ca2961a43f2863ac66d01572cb22 (diff)
downloadcpython-5fa8e7a559be10233c035ac2f29a9a87bf2c4eb7.zip
cpython-5fa8e7a559be10233c035ac2f29a9a87bf2c4eb7.tar.gz
cpython-5fa8e7a559be10233c035ac2f29a9a87bf2c4eb7.tar.bz2
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 7789cec..a0d981b 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