mirror of
https://github.com/beetbox/beets.git
synced 2025-12-26 02:24:33 +01:00
No longer need to pass a default quality here
This commit is contained in:
parent
036202e1c5
commit
96b0e8a33e
2 changed files with 2 additions and 2 deletions
|
|
@ -135,7 +135,7 @@ class Candidate(object):
|
|||
|
||||
def resize(self, plugin):
|
||||
if plugin.maxwidth and self.check == self.CANDIDATE_DOWNSCALE:
|
||||
self.path = ArtResizer.shared.resize(plugin.maxwidth, 75, self.path)
|
||||
self.path = ArtResizer.shared.resize(plugin.maxwidth, self.path)
|
||||
|
||||
|
||||
def _logged_get(log, *args, **kwargs):
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ class ThumbnailsPlugin(BeetsPlugin):
|
|||
self._log.debug(u"{1}x{1} thumbnail for {0} exists and is "
|
||||
u"recent enough", album, size)
|
||||
return False
|
||||
resized = ArtResizer.shared.resize(size, 75, album.artpath,
|
||||
resized = ArtResizer.shared.resize(size, album.artpath,
|
||||
util.syspath(target))
|
||||
self.add_tags(album, util.syspath(resized))
|
||||
shutil.move(resized, target)
|
||||
|
|
|
|||
Loading…
Reference in a new issue