From 04f61470fa2774be4c4687401bfb52ebcda71ce8 Mon Sep 17 00:00:00 2001 From: Kevin Rode Date: Mon, 4 Jan 2021 02:42:15 -0500 Subject: [PATCH] Fixed get_history command in database --- database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database.py b/database.py index e1881e3..b26f44a 100644 --- a/database.py +++ b/database.py @@ -323,4 +323,4 @@ def get_history(): c.execute("SELECT * FROM teams") history_strings = c.fetchall() conn.close() - return team_strings + return history_strings