From 3c93d1e4c80e521a7d9f222484b7c0985f0be100 Mon Sep 17 00:00:00 2001 From: kevroded Date: Wed, 6 Jan 2021 00:46:51 -0500 Subject: [PATCH] fixed db error --- database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database.py b/database.py index 56e6ecb..2e40814 100644 --- a/database.py +++ b/database.py @@ -323,7 +323,7 @@ def add_stats(player_game_stats_list): def cache_history(Team_1, Team_1_Score, Team_2, Team_2_Score, weather): conn = create_connection() store_string = """ INSERT INTO history(Team_1, Team_1_Score, Team_2, Team_2_Score, Weather) - VALUES (?,?,?,?) """ + VALUES (?,?,?,?,?) """ if conn is not None: c = conn.cursor()