mirror of
https://github.com/beetbox/beets.git
synced 2026-01-05 15:33:15 +01:00
Merge pull request #447 from chriscogburn/patch-2
Fix for id3v23 to include config parameter to save
This commit is contained in:
commit
580fe7e1de
1 changed files with 2 additions and 2 deletions
|
|
@ -81,7 +81,7 @@ class ScrubPlugin(BeetsPlugin):
|
|||
print('restoring art')
|
||||
mf = mediafile.MediaFile(item.path)
|
||||
mf.art = art
|
||||
mf.save()
|
||||
mf.save(config['id3v23'].get(bool))
|
||||
|
||||
scrubbing = False
|
||||
|
||||
|
|
@ -127,7 +127,7 @@ def _scrub(path):
|
|||
# remove them. In this case, we just remove all the tags.
|
||||
for tag in f.keys():
|
||||
del f[tag]
|
||||
f.save()
|
||||
f.save(config['id3v23'].get(bool))
|
||||
except IOError as exc:
|
||||
log.error(u'could not scrub {0}: {1}'.format(
|
||||
util.displayable_path(path),
|
||||
|
|
|
|||
Loading…
Reference in a new issue