From 82e12c6b4bf05c4e1f1fa114a9463f2d9f75f934 Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Fri, 8 Jul 2022 17:08:04 -0400 Subject: [PATCH] Add missing whitespaces --- beetsplug/spotify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/spotify.py b/beetsplug/spotify.py index 69f100f59..8d8862e8b 100644 --- a/beetsplug/spotify.py +++ b/beetsplug/spotify.py @@ -294,9 +294,9 @@ class SpotifyPlugin(MetadataSourcePlugin, BeetsPlugin): # Get album information for spotify tracks try: - album=track_data['album']['name'] + album = track_data['album']['name'] except KeyError: - album=None + album = None pass return TrackInfo( title=track_data['name'],