From fa58ad978be4c09faeef759012217a63969110ad Mon Sep 17 00:00:00 2001 From: Aevann Date: Tue, 24 Jan 2023 08:02:35 +0200 Subject: [PATCH] fix syntax error in a previous commit --- files/routes/front.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/front.py b/files/routes/front.py index efa905152..1730b34a6 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -73,7 +73,7 @@ def front_all(v, sub=None, subdomain=None): return render_template("home.html", v=v, listing=posts, next_exists=next_exists, sort=sort, t=t, page=page, sub=sub, home=True, pins=pins, holes=holes) -LIMITED_WPD_HOLES = ('gore', 'aftermath', 'selfharm', 'meta', 'discussion', 'social'. 'music') +LIMITED_WPD_HOLES = ('gore', 'aftermath', 'selfharm', 'meta', 'discussion', 'social', 'music') @cache.memoize(timeout=86400) def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words='', gt=0, lt=0, sub=None, site=None, pins=True, holes=True):