From a83ad6506cfd2d2bb99424c10fe1f37605fd47c6 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Thu, 12 Jan 2017 04:43:38 +0000 Subject: [PATCH] Increase blog category threshhold to 10 --- rophako/modules/blog/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rophako/modules/blog/__init__.py b/rophako/modules/blog/__init__.py index 1715932..e9efa84 100644 --- a/rophako/modules/blog/__init__.py +++ b/rophako/modules/blog/__init__.py @@ -550,9 +550,9 @@ def partial_tags(): result.append(dict( category=tag if len(tag) else Config.blog.default_category, count=tags[tag], - small=tags[tag] < 3, # TODO: make this configurable + small=tags[tag] < 10, # TODO: make this configurable )) - if tags[tag] < 3: + if tags[tag] < 10: has_small = True g.info["tags"] = result