This commit is contained in:
Miroslav Stampar
2018-06-29 16:33:17 +02:00
parent 5e2d0bd320
commit c0947846f4
3 changed files with 4 additions and 4 deletions

View File

@@ -1409,7 +1409,7 @@ def _createTemporaryDirectory():
try:
if not os.path.isdir(tempfile.gettempdir()):
os.makedirs(tempfile.gettempdir())
except (OSError, IOError, WindowsError), ex:
except Exception, ex:
warnMsg = "there has been a problem while accessing "
warnMsg += "system's temporary directory location(s) ('%s'). Please " % getSafeExString(ex)
warnMsg += "make sure that there is enough disk space left. If problem persists, "