aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/git_wiki/models.py')
-rw-r--r--bn_django/git_wiki/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bn_django/git_wiki/models.py b/bn_django/git_wiki/models.py
index f320984..3023500 100644
--- a/bn_django/git_wiki/models.py
+++ b/bn_django/git_wiki/models.py
@@ -222,7 +222,7 @@ def reposcan():
def newest_items():
num = Item.objects.count()
- min = num-7
+ min = num-6
if min < 0:
min = 0
return Item.objects.all()[min:num]