This commit is contained in:
Aevann1 2021-09-04 03:28:50 +02:00
parent dcf214e6eb
commit 15e6d53357
2 changed files with 4 additions and 4 deletions

View file

@ -26,12 +26,12 @@ def marseyverse(v):
while count < 25:
for site in [drama,pcm,gigachad,weebzone]:
post = site[count]
try: post = site[count]
except: continue
listing.append(Post(post))
count += 1
return render_template("marseyverse.html", v=v, listing=listing)
return render_template("marseyverse.html", v=v, listing=listing)
@app.get("/post/")
def slash_post():