From: Andrew M. Kuchling Date: Mon, 7 Jul 2008 16:51:09 +0000 (+0000) Subject: Fix example to match text X-Git-Tag: v2.6b2~91 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=10cf7d947d9d9cc12edef02bfb70db4ff959d8bb;p=thirdparty%2FPython%2Fcpython.git Fix example to match text --- diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index eb2a69bbbe46..df5ccb68b206 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`.)