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)