remotes/1693045480750635534/spooky-22
Aevann1 2021-07-21 18:26:40 +02:00
parent df1773fec7
commit 14f7d0e240
1 changed files with 2 additions and 2 deletions

View File

@ -389,7 +389,7 @@ def archiveorg(url):
def sex(g, list):
for u in list:
for u in li:
print(f"1 {u.profileurl}")
x = requests.get(u.profileurl)
@ -406,7 +406,7 @@ def sex(g, list):
@app.route("/admin/resize", methods=["GET"])
def resize():
list = g.db.query(User).filter(User.profileurl != None).all()
gevent.spawn(sex, g, list)
gevent.spawn(sex, g, li)
return "sex"
@app.route("/submit", methods=['POST'])