diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-07-07 16:51:09 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-07-07 16:51:09 (GMT) |
commit | 10cf7d947d9d9cc12edef02bfb70db4ff959d8bb (patch) | |
tree | 72bdd78c6585ba1de4efe2afd6417c2971846076 | |
parent | 2c7ca9bb117f003e37ae2ff8d6e9582a95a65807 (diff) | |
download | cpython-10cf7d947d9d9cc12edef02bfb70db4ff959d8bb.zip cpython-10cf7d947d9d9cc12edef02bfb70db4ff959d8bb.tar.gz cpython-10cf7d947d9d9cc12edef02bfb70db4ff959d8bb.tar.bz2 |
Fix example to match text
-rw-r--r-- | Doc/whatsnew/2.6.rst | 2 |
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`.) |