From 4202552a1e18b619ccfa78d08f87de6625be75a8 Mon Sep 17 00:00:00 2001 From: Benjamin Attal Date: Tue, 3 Jun 2014 20:49:16 -0400 Subject: [PATCH] Remove unecessary import --- bitshift/crawler/crawl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitshift/crawler/crawl.py b/bitshift/crawler/crawl.py index b91fc95..70c2943 100644 --- a/bitshift/crawler/crawl.py +++ b/bitshift/crawler/crawl.py @@ -7,7 +7,7 @@ Contains functions for initializing all subsidiary, threaded crawlers. import logging, logging.handlers, os, Queue from bitshift.crawler import crawler, indexer -from bitshift.parser import parse, start_parse_servers +from bitshift.parser import start_parse_servers __all__ = ["crawl"]