remove unused scrape table

This commit is contained in:
j 2016-01-21 12:38:02 +05:30
commit 97fe8731b8
6 changed files with 1 additions and 93 deletions

View file

@ -65,9 +65,6 @@ def shutdown():
if state.downloads:
logger.debug('shutdown downloads')
state.downloads.join()
if state.scraping:
logger.debug('shutdown scraping')
state.scraping.join()
logger.debug('shutdown http_server')
state.http_server.stop()
if state.tasks:
@ -152,7 +149,6 @@ def run():
state.tor = tor.Tor()
state.node = node.server.start()
state.downloads = downloads.Downloads()
#state.scraping = downloads.ScrapeThread()
state.nodes = nodes.Nodes()
def publish():
if not state.tor.is_online():