mirror of
https://github.com/beetbox/beets.git
synced 2026-02-01 04:55:38 +01:00
still dealing with cases where no parent composer
This commit is contained in:
parent
8363dedaeb
commit
fae0656935
1 changed files with 7 additions and 2 deletions
|
|
@ -174,8 +174,13 @@ add one at https://musicbrainz.org/recording/{}', item, item.mb_trackid)
|
|||
self._log.debug("error fetching work: {}", e)
|
||||
return
|
||||
parent_info = self.get_info(item, work_info)
|
||||
self._log.debug("Work fetched: {} - {}", parent_info['parentwork'],
|
||||
parent_info['parent_composer'])
|
||||
if 'parent_composer' in parent_info:
|
||||
self._log.debug("Work fetched: {} - {}",
|
||||
parent_info['parentwork'],
|
||||
parent_info['parent_composer'])
|
||||
else:
|
||||
self._log.debug("Work fetched: {} - no parent composer",
|
||||
parent_info['parentwork'])
|
||||
|
||||
elif hasparent:
|
||||
self._log.debug("{} : Work present, skipping", item)
|
||||
|
|
|
|||
Loading…
Reference in a new issue