Fix deleting music album not working

This commit is contained in:
croneter 2018-04-17 20:22:32 +02:00
parent 678544d236
commit d03b68b4e1

View file

@ -956,7 +956,7 @@ class KodiDBMethods(object):
return
query = '''
DELETE FROM discography
WHERE idArtist = ?, strAlbum = ?, strYear = ?
WHERE idArtist = ? AND strAlbum = ? AND strYear = ?
'''
self.cursor.execute(query, (artist[0], name, year))