aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrap.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2019-05-19 15:14:08 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2019-05-19 15:14:08 +0200
commit82bd60530546147df8cf4edd4cb3e844928888f2 (patch)
treee080f02c0dc0da80aae56bf9b2046dd39dd12424 /src/bootstrap.py
parentTemporary fix for the logging module. Closes #44 (diff)
downloadnewspipe-82bd60530546147df8cf4edd4cb3e844928888f2.tar.gz
newspipe-82bd60530546147df8cf4edd4cb3e844928888f2.tar.bz2
newspipe-82bd60530546147df8cf4edd4cb3e844928888f2.zip
fixed module name of the crawler in bootstrap.py
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