From f581c5bbc0809ec656fb5058fdbeb1e48e137039 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 7 Jan 2025 11:36:47 -0500 Subject: [PATCH] new insert --- 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 14cfccd..fdf8814 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -273,7 +273,7 @@ def start_register(): # cursor.execute(query, values) # conn.commit() - INSERT_MEMBERS = "INSERT INTO members_pending(email,firstname,lastname) VALUES('"+firstname+"','"+lastname+"','"+email+"')" + INSERT_MEMBERS = "INSERT INTO members_pending(email,firstname,lastname) VALUES('"+email+"','"+firstname+"','"+lastname+"')" with connection: with connection.cursor(cursor_factory=psycopg2.extras.DictCursor) as cursor: cursor.execute(INSERT_MEMBERS)