Python 3: Raise with no arguments can only be used in an except block

This commit is contained in:
Labrys 2016-06-04 23:35:11 -04:00
commit 22daf02167

View file

@ -724,7 +724,7 @@ def onerror(func, path, exc_info):
os.chmod(path, stat.S_IWUSR)
func(path)
else:
raise
raise Exception
def rmDir(dirName):