Added used "new" to unqueueAlbum definition - hitting "mark as skipped"

in the web ui was throwing an error without it.
This commit is contained in:
sbuser
2011-08-11 10:43:12 -05:00
parent d464afde90
commit fd078e3034

View File

@@ -163,7 +163,7 @@ class WebInterface(object):
raise cherrypy.HTTPRedirect(redirect)
queueAlbum.exposed = True
def unqueueAlbum(self, AlbumID, ArtistID):
def unqueueAlbum(self, AlbumID, ArtistID, new):
logger.info(u"Marking album: " + AlbumID + "as skipped...")
myDB = db.DBConnection()
controlValueDict = {'AlbumID': AlbumID}