From 0492f1f2148bc86ced0cd207a7af56ee002fd44c Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Fri, 14 Apr 2023 08:10:13 -0400 Subject: [PATCH] Address comments --- beetsplug/embedart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/embedart.py b/beetsplug/embedart.py index a821b33a4..7c41380d9 100644 --- a/beetsplug/embedart.py +++ b/beetsplug/embedart.py @@ -116,7 +116,7 @@ class EmbedCoverArtPlugin(BeetsPlugin): response = requests.get(opts.url, timeout=5) response.raise_for_status() except requests.exceptions.RequestException as e: - self._log.error("Error: {}".format(e)) + self._log.error("{}".format(e)) return extension = guess_extension(response.headers ['Content-Type'])