mirror of
https://github.com/beetbox/beets.git
synced 2025-12-16 05:34:47 +01:00
change variable to lower case
This commit is contained in:
parent
18bcadcfdc
commit
036667c51e
1 changed files with 2 additions and 2 deletions
|
|
@ -904,9 +904,9 @@ class Spotify(RemoteArtSource):
|
|||
if not len(album.mb_albumid) == 22 and \
|
||||
not album.data_source == 'Spotify':
|
||||
return
|
||||
URL = self.SPOTIFY_ALBUM_URL + album.mb_albumid
|
||||
url = self.SPOTIFY_ALBUM_URL + album.mb_albumid
|
||||
try:
|
||||
response = requests.get(URL)
|
||||
response = requests.get(url)
|
||||
except requests.RequestException:
|
||||
self._log.debug('Spotify: error receiving response')
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue