summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-07-07 16:51:09 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-07-07 16:51:09 (GMT)
commit10cf7d947d9d9cc12edef02bfb70db4ff959d8bb (patch)
tree72bdd78c6585ba1de4efe2afd6417c2971846076
parent2c7ca9bb117f003e37ae2ff8d6e9582a95a65807 (diff)
downloadcpython-10cf7d947d9d9cc12edef02bfb70db4ff959d8bb.zip
cpython-10cf7d947d9d9cc12edef02bfb70db4ff959d8bb.tar.gz
cpython-10cf7d947d9d9cc12edef02bfb70db4ff959d8bb.tar.bz2
Fix example to match text
-rw-r--r--Doc/whatsnew/2.6.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst
index eb2a69b..df5ccb6 100644
--- a/Doc/whatsnew/2.6.rst
+++ b/Doc/whatsnew/2.6.rst
@@ -2156,7 +2156,7 @@ details.
files, which have names ending with '~'::
shutil.copytree('Doc/library', '/tmp/library',
- ignore=shutil.ignore_patterns('*~'))
+ ignore=shutil.ignore_patterns('*~', '.svn'))
(Contributed by Tarek Ziadé; :issue:`2663`.)