From 6bc3fb8f679234c85b28e47f0471328208f38784 Mon Sep 17 00:00:00 2001 From: wordofglass Date: Thu, 14 Apr 2016 15:27:47 +0200 Subject: [PATCH] fetchart: make Candidate a new-style class --- beetsplug/fetchart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 1eb139602..0b020c8f1 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -42,7 +42,7 @@ CONTENT_TYPES = ('image/jpeg', 'image/png') DOWNLOAD_EXTENSION = '.jpg' -class Candidate(): +class Candidate(object): """Holds information about a matching artwork, deals with validation of dimension restrictions and resizing. """