From 4e7fd47a3574e567482bc2fb7e9a3bb51215fc12 Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Sat, 22 Feb 2020 12:05:02 -0500 Subject: [PATCH] Add quality to art resizer docstring --- beets/util/artresizer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beets/util/artresizer.py b/beets/util/artresizer.py index 09d138322..cf457e797 100644 --- a/beets/util/artresizer.py +++ b/beets/util/artresizer.py @@ -198,7 +198,8 @@ class ArtResizer(six.with_metaclass(Shareable, object)): def resize(self, maxwidth, path_in, path_out=None, quality=0): """Manipulate an image file according to the method, returning a new path. For PIL or IMAGEMAGIC methods, resizes the image to a - temporary file. For WEBPROXY, returns `path_in` unmodified. + temporary file and encodes with the specified quality level. + For WEBPROXY, returns `path_in` unmodified. """ if self.local: func = BACKEND_FUNCS[self.method[0]]