[Python-checkins] r64774 - python/trunk/Doc/whatsnew/2.6.rst
andrew.kuchling
python-checkins at python.org
Mon Jul 7 18:51:09 CEST 2008
Author: andrew.kuchling
Date: Mon Jul 7 18:51:09 2008
New Revision: 64774
Log:
Fix example to match text
Modified:
python/trunk/Doc/whatsnew/2.6.rst
Modified: python/trunk/Doc/whatsnew/2.6.rst
==============================================================================
--- python/trunk/Doc/whatsnew/2.6.rst (original)
+++ python/trunk/Doc/whatsnew/2.6.rst Mon Jul 7 18:51:09 2008
@@ -2156,7 +2156,7 @@
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`.)
More information about the Python-checkins
mailing list