commit | 38eb748b0aab32182c2704a5e16820fa16571b6c | [log] [tgz] |
---|---|---|
author | Hynek Schlawack <hs@ox.cx> | Thu Apr 16 11:35:00 2015 -0400 |
committer | Hynek Schlawack <hs@ox.cx> | Thu Apr 16 14:51:08 2015 -0400 |
tree | 3fe0f59bd99e55a4ef7e62ad191c7d0dc56c7bae | |
parent | cf7ede814ff6b84440cadc2a49c3ae6548f237a4 [diff] [blame] |
Reactivate cleanup of temp files
diff --git a/OpenSSL/test/util.py b/OpenSSL/test/util.py index b8be91d..12e5eb8 100644 --- a/OpenSSL/test/util.py +++ b/OpenSSL/test/util.py
@@ -163,7 +163,7 @@ Subclasses must invoke this method if they override it or the cleanup will not occur. """ - if False and self._temporaryFiles is not None: + if self._temporaryFiles is not None: for temp in self._temporaryFiles: if os.path.isdir(temp): shutil.rmtree(temp)