From 8af2224942e26476e5bf86b4f43ecadacee157aa Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sat, 7 Sep 2024 00:54:04 +0200 Subject: [PATCH] fix: worky! --- updater.py | 1 + 1 file changed, 1 insertion(+) diff --git a/updater.py b/updater.py index 373f973..d484ea4 100644 --- a/updater.py +++ b/updater.py @@ -15,6 +15,7 @@ conn = psycopg2.connect( cursor = conn.cursor() cursor.execute("UPDATE users SET count=count+1") +conn.commit() cursor.close() conn.close()