From 46efa902dc5361c19db1f8e3df7570baa2fca40f Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 4 Sep 2021 03:11:03 +0200 Subject: [PATCH] fd --- files/routes/front.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/routes/front.py b/files/routes/front.py index fdd735a210..3f073266bc 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -28,7 +28,8 @@ def marseyverse(v): while count < 25: for site in [drama,pcm,gigachad,weebzone]: - listing.append(Post(site[count])) + post = site[count] + listing.append(Post(post)) count += 1 return render_template("marseyverse.html", v=v, listing=listing)