From a499bbe5445968911e60fd84bcb69411836f82c3 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Wed, 8 Jan 2025 08:19:46 -0500 Subject: [PATCH] Test username --- services/web/project/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index 5e06a42..cacad51 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -382,6 +382,7 @@ def complete_register(): country= data.get('country') FIND_USERNAME= f"SELECT * FROM members WHERE username::text = '{username}' " + print(FIND_USERNAME) with connection: with connection.cursor(cursor_factory=psycopg2.extras.DictCursor) as cursor: cursor.execute(FIND_USERNAME)