1
0
mirror of https://github.com/django/django.git synced 2025-03-10 01:12:53 +00:00

Cleaned temp dir in symlinks_supported()

Refs #21482.
This commit is contained in:
Claude Paroz 2014-06-23 13:25:50 +02:00
parent 9618d68b34
commit 18b3788401

View File

@ -120,4 +120,6 @@ def symlinks_supported():
else:
os.remove(symlink_path)
finally:
os.rmdir(original_path)
os.rmdir(tmpdir)
return supported