From acf67b2857ccafd801691df02ab371fb092709cb Mon Sep 17 00:00:00 2001 From: polaris Date: Sun, 13 Apr 2014 13:14:50 -0400 Subject: [PATCH] Somehow missed the actual insert code --- gamespy/gs_database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamespy/gs_database.py b/gamespy/gs_database.py index f68632d..bf1d55a 100644 --- a/gamespy/gs_database.py +++ b/gamespy/gs_database.py @@ -332,7 +332,7 @@ class GamespyDatabase(object): logger.log(-1, q2) c = self.conn.cursor() - c.execute(q, [userProfileId, buddyProfileId, now, 0, 0]) # 0 will mean not authorized + c.execute(q, [userProfileId, buddyProfileId, now, 0, 0, ""]) # 0 will mean not authorized self.conn.commit() def auth_buddy(self, userProfileId, buddyProfileId):