summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlok Saboo <arsaboo@gmx.com>2022-07-08 17:08:04 -0400
committerAlok Saboo <arsaboo@gmx.com>2022-07-08 17:08:04 -0400
commit82e12c6b4bf05c4e1f1fa114a9463f2d9f75f934 (patch)
treee4444e9f4dd0089a79cd23d02d60f4ab14a46a55
parent224d31e097ea009b180bf384d090a03595055924 (diff)
Add missing whitespaces
-rw-r--r--beetsplug/spotify.py4
1 files 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'],