From b5aad0a51e1e9462ddf7d501da4eba7c3ceebde9 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 8 May 2020 01:31:12 +0300 Subject: [PATCH] Fix: Re-raise the exception --- mimedecode/mimedecode.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mimedecode/mimedecode.py b/mimedecode/mimedecode.py index bdc44c1..c23a88f 100644 --- a/mimedecode/mimedecode.py +++ b/mimedecode/mimedecode.py @@ -530,3 +530,4 @@ def open_output_file(filename): except Exception: if create: shutil.rmtree(full_dir) + raise -- 2.39.2