forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-12-21 10:02:05 +02:00
parent 8a0866da0a
commit f06292604a
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ def sex(v):
users = g.db.query(User).filter(User.patron > 0, User.patron < 5).all()
for u in users:
if not u.email or u.email.lower() not in emails: print(u.username + ' - ' + u.email)
if not u.email or u.email.lower() not in emails: print(f'{u.username} - {u.email}')
return "sex"