Created attachment 337592 [details] Make sure shutil.rmtree() isn't passed a symlink In python, os.path.isdir(myemp) returns true for symlinks to directories. However, shutil.rmtree() fails if it's being provided a symlink. The attached patch fixes that.
Applied. Thanks!