From 1e33769c0da394840cd2a6abbe3ac73b68d30745 Mon Sep 17 00:00:00 2001 From: piair Date: Mon, 29 Aug 2022 11:22:45 +0200 Subject: [PATCH] wtf --- V4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/V4.py b/V4.py index 676c3ba..992d34a 100755 --- a/V4.py +++ b/V4.py @@ -139,7 +139,7 @@ def setup_proxy(ip, port) : def add_row(compte, points, mycursor, mydb): - sql = "INSERT INTO daily (compte, points, date, date2) VALUES (%s, %s, current_date())" + sql = "INSERT INTO daily (compte, points, date) VALUES (%s, %s, current_date())" val = (compte, points) mycursor.execute(sql, val) mydb.commit()