Fix example to match text

This commit is contained in:
Andrew M. Kuchling 2008-07-07 16:51:09 +00:00
parent 2c7ca9bb11
commit 10cf7d947d
1 changed files with 1 additions and 1 deletions

View 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`.)