mirror of
https://github.com/beetbox/beets.git
synced 2026-02-02 05:21:45 +01:00
Workaround for pylast issue https://code.google.com/p/pylast/issues/detail?id=85 as suggested by @sampsyo
This commit is contained in:
parent
c5896684f3
commit
d339e2f815
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ def _tags_for(obj):
|
|||
not found or another error occurs.
|
||||
"""
|
||||
try:
|
||||
res = obj.get_top_tags()
|
||||
res = super(pylast.Album, obj).get_top_tags()
|
||||
except PYLAST_EXCEPTIONS as exc:
|
||||
log.debug(u'last.fm error: %s' % unicode(exc))
|
||||
return []
|
||||
|
|
|
|||
Loading…
Reference in a new issue