maintainer-feedback requested: [Bug 278634] x11/cinnamon: cinnamon-settings user doesn't change the user avatar

From: <bugzilla-noreply_at_freebsd.org>
Date: Sun, 28 Apr 2024 12:15:44 UTC
Bugzilla Automation <bugzilla@FreeBSD.org> has asked freebsd-gnome (Nobody)
<gnome@FreeBSD.org> for maintainer-feedback:
Bug 278634: x11/cinnamon: cinnamon-settings user doesn't change the user avatar
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278634



--- Description ---
When using cinnamon-settings user, it doesn't change the user avatar.

I am getting the error:

AttributeError:module 'PIL.Image' has no attribute 'ANTIALIAS'

I solved changing:
image.thumbnail((255, 255), Image.ANTIALIAS)
to
image.thumbnail((255, 255), Image.LANCZOS)

And now it works.