]> granicus.if.org Git - python/commitdiff
Fix misindent
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 16 Jan 2011 18:16:52 +0000 (18:16 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 16 Jan 2011 18:16:52 +0000 (18:16 +0000)
Doc/whatsnew/3.2.rst

index 4dfea84d640c41eca2a05b506980eb64686af676..0aeaa386be2eec3c8427c28274cf02fbcec2cd77 100644 (file)
@@ -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é.)