aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/controllers
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-05 20:16:45 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-05 20:16:45 +0100
commit18f05da9e7f1a2c524e3668491cbc5e818ee0894 (patch)
tree893eaaa6988a79a657ad2803d23b250273fd27f9 /pyaggr3g470r/controllers
parentFix the authenticate decorator. (diff)
downloadnewspipe-18f05da9e7f1a2c524e3668491cbc5e818ee0894.tar.gz
newspipe-18f05da9e7f1a2c524e3668491cbc5e818ee0894.tar.bz2
newspipe-18f05da9e7f1a2c524e3668491cbc5e818ee0894.zip
set default limit to 100.
Diffstat (limited to 'pyaggr3g470r/controllers')
-rw-r--r--pyaggr3g470r/controllers/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/controllers/feed.py b/pyaggr3g470r/controllers/feed.py
index a3cdcddd..6550d8c9 100644
--- a/pyaggr3g470r/controllers/feed.py
+++ b/pyaggr3g470r/controllers/feed.py
@@ -3,7 +3,7 @@ from .abstract import AbstractController
from pyaggr3g470r.models import Feed
DEFAULT_MAX_ERROR = 3
-DEFAULT_LIMIT = 5
+DEFAULT_LIMIT = 100
class FeedController(AbstractController):
bgstack15