diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-16 18:16:52 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-16 18:16:52 (GMT) |
commit | 121a055a0f2ff9f589b8bfc1b8eb938dca9ed967 (patch) | |
tree | 735ffa97d035ea3c27cd68372394dc528da509d3 /Doc | |
parent | 33da1d65bc6377e81caa17aaa4631c7aad607ccd (diff) | |
download | cpython-121a055a0f2ff9f589b8bfc1b8eb938dca9ed967.zip cpython-121a055a0f2ff9f589b8bfc1b8eb938dca9ed967.tar.gz cpython-121a055a0f2ff9f589b8bfc1b8eb938dca9ed967.tar.bz2 |
Fix misindent
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 4dfea84..0aeaa38 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1078,12 +1078,12 @@ shutil The :func:`shutil.copytree` function has two new options: - * *ignore_dangling_symlinks*: when ``symlinks=False`` so that the function - copies the file pointed to by the symlink, not the symlink itself. This - option will silence the error raised if the file doesn't exist. +* *ignore_dangling_symlinks*: when ``symlinks=False`` so that the function + copies the file pointed to by the symlink, not the symlink itself. This + option will silence the error raised if the file doesn't exist. - * *copy_function*: is a callable that will be used to copy files. - :func:`shutil.copy2` is used by default. +* *copy_function*: is a callable that will be used to copy files. + :func:`shutil.copy2` is used by default. (Contributed by Tarek Ziadé.) |