mirror of
https://github.com/beetbox/beets.git
synced 2026-01-04 06:53:27 +01:00
Fix ArtResizer.local property (fix #983)
This commit is contained in:
parent
a29b5fd750
commit
582dbf6b34
1 changed files with 2 additions and 2 deletions
|
|
@ -161,9 +161,9 @@ class ArtResizer(object):
|
|||
@property
|
||||
def local(self):
|
||||
"""A boolean indicating whether the resizing method is performed
|
||||
locally (i.e., PIL or IMAGEMAGICK).
|
||||
locally (i.e., PIL or ImageMagick).
|
||||
"""
|
||||
return self.method in BACKEND_FUNCS
|
||||
return self.method[0] in BACKEND_FUNCS
|
||||
|
||||
def _can_compare(self):
|
||||
"""A boolean indicating whether image comparison is available"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue