From ff1b7ca3935f80bb3d8065de66342e8735650888 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Mon, 16 Dec 2024 06:47:18 -0500 Subject: [PATCH] Fix Query --- services/web/project/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index c0d814b..51d25bc 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -232,7 +232,7 @@ def panel_account(current_user): @token_required def dashboard(current_user): print( current_user) - FIND_USER_DETAIL= "SSELECT id,uid,username,updated,email,account_name, firstname, lastname FROM members LIMIT 1" + FIND_USER_DETAIL= "SELECT id,uid,username,updated,email,account_name, firstname, lastname FROM members LIMIT 1" with connection: with connection.cursor(cursor_factory=psycopg2.extras.DictCursor) as cursor: cursor.execute(FIND_USER_DETAIL)