mirror of
https://github.com/beetbox/beets.git
synced 2026-01-05 15:33:15 +01:00
Add missing whitespaces
This commit is contained in:
parent
224d31e097
commit
82e12c6b4b
1 changed files with 2 additions and 2 deletions
|
|
@ -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'],
|
||||
|
|
|
|||
Loading…
Reference in a new issue