aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap.py')
-rw-r--r--src/bootstrap.py2
1 files changed, 1 insertions, 1 deletions
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:
bgstack15