From 3d33f37f2395fbd134b59cb84e8057721bbfc60a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakobus=20Sch=C3=BCrz?= Date: Wed, 25 Sep 2019 00:39:17 +0200 Subject: [PATCH] remove print --- certweb/pubkeys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certweb/pubkeys.py b/certweb/pubkeys.py index 5fd2e71..5ca8191 100644 --- a/certweb/pubkeys.py +++ b/certweb/pubkeys.py @@ -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()