]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue19643 Fix whitespace
authorTim Golden <mail@timgolden.me.uk>
Wed, 7 May 2014 17:08:08 +0000 (18:08 +0100)
committerTim Golden <mail@timgolden.me.uk>
Wed, 7 May 2014 17:08:08 +0000 (18:08 +0100)
Doc/library/shutil.rst

index eb81c7d48c32476abd0762f8f00cfe0ab02eaaee..3ed1d05194cd4d26d1d4039f3437ecf7e99c883d 100644 (file)
@@ -433,12 +433,12 @@ will propagate. ::
 
     import os, stat
     import shutil
-    
+
     def remove_readonly(func, path, _):
         "Clear the readonly bit and reattempt the removal"
         os.chmod(path, stat.S_IWRITE)
-        func(path)   
-   
+        func(path)
+
     shutil.rmtree(directory, onerror=remove_readonly)
 
 .. _archiving-operations: