]> granicus.if.org Git - python/commitdiff
Fix example to match text
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 7 Jul 2008 16:51:09 +0000 (16:51 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 7 Jul 2008 16:51:09 +0000 (16:51 +0000)
Doc/whatsnew/2.6.rst

index eb2a69bbbe462c64cd5863cf80aabef46daeb9ac..df5ccb68b206e3000edad49f649ceb6626897f5d 100644 (file)
@@ -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`.)