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()