From 09101de397f4fcfad5e47aaef68539524b8a269f Mon Sep 17 00:00:00 2001 From: wisp3rwind <17089248+wisp3rwind@users.noreply.github.com> Date: Tue, 22 Mar 2022 21:26:53 +0100 Subject: [PATCH] artresizer: restore incorrect change to exception handling from f751893b --- beets/util/artresizer.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/beets/util/artresizer.py b/beets/util/artresizer.py index 904559830..8a08bf6de 100644 --- a/beets/util/artresizer.py +++ b/beets/util/artresizer.py @@ -612,9 +612,6 @@ class ArtResizer(metaclass=Shareable): result_path = self.local_method.convert_format( path_in, path_new, deinterlaced ) - except Exception: - # FIXME: Should probably issue a warning? - pass finally: if result_path != path_in: os.unlink(path_in)