From fd078e3034fa15e054778287a632efcce7749fa0 Mon Sep 17 00:00:00 2001 From: sbuser Date: Thu, 11 Aug 2011 10:43:12 -0500 Subject: [PATCH] Added used "new" to unqueueAlbum definition - hitting "mark as skipped" in the web ui was throwing an error without it. --- headphones/webserve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/webserve.py b/headphones/webserve.py index c03c2790..392a3561 100644 --- a/headphones/webserve.py +++ b/headphones/webserve.py @@ -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}