mirror of
https://github.com/beetbox/beets.git
synced 2026-02-24 08:12:54 +01:00
Addressed coding style issue.
This commit is contained in:
parent
3e13971c54
commit
733c1839fb
1 changed files with 3 additions and 3 deletions
|
|
@ -74,12 +74,12 @@ class EmbedCoverArtPlugin(BeetsPlugin):
|
|||
print_()
|
||||
|
||||
fmt = u'$albumartist - $album'
|
||||
item_type = u'album'
|
||||
istr = u'album'
|
||||
if opts.file:
|
||||
fmt = u'$albumartist - $album - $title'
|
||||
item_type = u'file'
|
||||
istr = u'file'
|
||||
prompt = u'Modify artwork for %i %s%s (y/n)?' % \
|
||||
(len(items), item_type, 's' if len(items) > 1 else '')
|
||||
(len(items), istr, 's' if len(items) > 1 else '')
|
||||
|
||||
# Show all the items.
|
||||
for item in items:
|
||||
|
|
|
|||
Loading…
Reference in a new issue