remove print

This commit is contained in:
Jakobus Schürz 2019-09-25 00:39:17 +02:00
parent 77b1e9e518
commit 3d33f37f23

View file

@ -23,7 +23,7 @@ def index():
' JOIN user u ON p.user_id = u.id'
' ORDER BY deleted ASC, revoked ASC, p.created DESC'
).fetchall()
print(pubkeys[0])
users = db.execute(
'SELECT * FROM user WHERE id = ?', (g.user['id'],)
).fetchone()