aboutsummaryrefslogtreecommitdiff
path: root/manager.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-05 20:26:04 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-05 20:26:04 +0100
commit08391db3291c21a7bbbd5bd0719fd97987b2d57a (patch)
tree31372a48ef4836ab84390d5f1f9b10f5c659d96b /manager.py
parentset default limit to 100. (diff)
downloadnewspipe-08391db3291c21a7bbbd5bd0719fd97987b2d57a.tar.gz
newspipe-08391db3291c21a7bbbd5bd0719fd97987b2d57a.tar.bz2
newspipe-08391db3291c21a7bbbd5bd0719fd97987b2d57a.zip
set again to 5...
Diffstat (limited to 'manager.py')
-rwxr-xr-xmanager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manager.py b/manager.py
index c23f0c08..348ed9c3 100755
--- a/manager.py
+++ b/manager.py
@@ -81,7 +81,7 @@ def db_create():
db.session.commit()
@manager.command
-def fetch(user, password, limit=10):
+def fetch(user, password, limit=100):
"Crawl the feeds with the client crawler."
from pyaggr3g470r.lib.crawler import CrawlerScheduler
scheduler = CrawlerScheduler(user, password)
bgstack15