diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2019-05-19 15:14:08 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2019-05-19 15:14:08 +0200 |
commit | 82bd60530546147df8cf4edd4cb3e844928888f2 (patch) | |
tree | e080f02c0dc0da80aae56bf9b2046dd39dd12424 /src/bootstrap.py | |
parent | Temporary fix for the logging module. Closes #44 (diff) | |
download | newspipe-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.py | 2 |
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: |