Spaces:
Running
Running
File size: 106 Bytes
b7bd3ec |
1 2 3 4 5 6 7 |
import os, stat
def _chmod_and_retry(func, path, exc):
os.chmod(path, stat.S_IWRITE)
func(path)
|