From a5e64bd831ef742e5e176890e484f38f4ba47bc9 Mon Sep 17 00:00:00 2001 From: Arc <33088785+arcbtc@users.noreply.github.com> Date: Mon, 27 Jan 2020 23:37:25 +0000 Subject: [PATCH] Update __init__.py --- lnbits/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/__init__.py b/lnbits/__init__.py index 2d9233bc..690c99af 100644 --- a/lnbits/__init__.py +++ b/lnbits/__init__.py @@ -491,7 +491,7 @@ def withdraw(): user_fau = Faudb.fetchall("SELECT * FROM withdraws WHERE usr = ?", (usr,)) #If del is selected by user from withdraw page, the withdraw link is to be deleted - faudel = request.args.get("del") + faudel = request.args.get("del") if faudel: Faudb.execute("DELETE FROM withdraws WHERE uni = ?", (faudel,)) user_fau = Faudb.fetchall("SELECT * FROM withdraws WHERE usr = ?", (usr,))