From e1ffadb2d6bbff8654c7bf593bda0dc40ac5f070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ar=C5=ABnas=20Nejus?= Date: Wed, 23 Mar 2022 16:20:06 +0000 Subject: [PATCH] Return iterable from the exception handler --- beets/autotag/hooks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/beets/autotag/hooks.py b/beets/autotag/hooks.py index a385699ac..2f9e2135c 100644 --- a/beets/autotag/hooks.py +++ b/beets/autotag/hooks.py @@ -606,6 +606,7 @@ def invoke_mb(call_func, *args): return call_func(*args) except mb.MusicBrainzAPIError as exc: exc.log(log) + return () @plugins.notify_info_yielded('albuminfo_received')