From 82bd60530546147df8cf4edd4cb3e844928888f2 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 19 May 2019 15:14:08 +0200 Subject: fixed module name of the crawler in bootstrap.py --- src/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bootstrap.py') diff --git a/src/bootstrap.py b/src/bootstrap.py index 8e337c4a..8e5413e0 100644 --- a/src/bootstrap.py +++ b/src/bootstrap.py @@ -14,7 +14,7 @@ def set_logging(log_path=None, log_level=logging.INFO, modules=(), log_format='%(asctime)s %(levelname)s %(message)s'): if not modules: modules = ('root', 'bootstrap', 'runserver', - 'web', 'crawler.classic_crawler', 'manager', 'plugins') + 'web', 'crawler.default_crawler', 'manager', 'plugins') if conf.ON_HEROKU: log_format = '%(levelname)s %(message)s' if log_path: -- cgit