Issue19643 Fix whitespace

This commit is contained in:
Tim Golden 2014-05-07 18:08:08 +01:00
parent 783377998a
commit ba74885e0c

View 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: