mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 04:55:10 +01:00
logging if no parent composer
This commit is contained in:
parent
e6da3e1498
commit
a10ad548c9
1 changed files with 5 additions and 2 deletions
|
|
@ -181,8 +181,11 @@ class ParentWorkPlugin(BeetsPlugin):
|
|||
|
||||
self._log.debug("Finished searching work for: " +
|
||||
item.artist + ' - ' + item.title)
|
||||
self._log.debug("Work fetched: " + parent_info['parentwork'] +
|
||||
' - ' + parent_info['parent_composer'])
|
||||
if parent_info['parent_composer']:
|
||||
self._log.debug("Work fetched: " + parent_info['parentwork'] +
|
||||
' - ' + parent_info['parent_composer'])
|
||||
else:
|
||||
self._log.debug("Work fetched: " + parent_info['parentwork'])
|
||||
|
||||
for key, value in parent_info.items():
|
||||
if value:
|
||||
|
|
|
|||
Loading…
Reference in a new issue