Remove sleep from add artists from Manage New page

This commit is contained in:
Palli
2012-01-08 23:13:21 +00:00
parent 4063015a1d
commit 80f281cf8a

View File

@@ -151,7 +151,6 @@ class WebInterface(object):
def addArtists(self, **args):
threading.Thread(target=importer.artistlist_to_mbids, args=[args, True]).start()
time.sleep(5)
raise cherrypy.HTTPRedirect("home")
addArtists.exposed = True