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)