CaaCoverArtImage: specify constructor, accept is_front

This commit is contained in:
Laurent Monin
2014-05-25 21:37:25 +02:00
parent fdab5efa78
commit 0e6572fad3

View File

@@ -320,6 +320,11 @@ class CaaCoverArtImage(CoverArtImage):
support_types = True
sourceprefix = u"CAA"
def __init__(self, url, types=[], is_front=False, comment='', data=None):
CoverArtImage.__init__(self, url=url, types=types, comment=comment,
data=data)
self.is_front = is_front
class TagCoverArtImage(CoverArtImage):