Add error message if tmp not empty

This commit is contained in:
Julian Mutter 2022-09-13 09:59:50 +02:00
parent b4c01557f6
commit 610f07074f

View File

@ -161,6 +161,8 @@ def delete_tmp_dir():
os.rmdir(os.path.join(TMP_DIR))
except FileNotFoundError:
pass
except OSError:
print("Failed deleting due to OSError")
if __name__ == "__main__":