From 593c726cbec6ce30cffa53f9bbe3452c8ed3a56a Mon Sep 17 00:00:00 2001 From: todd Date: Sat, 18 Jul 2020 13:59:18 -0400 Subject: [PATCH] Fix log entry typo --- bots/game_threads/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/game_threads/__init__.py b/bots/game_threads/__init__.py index a87fa5d..c6b4266 100644 --- a/bots/game_threads/__init__.py +++ b/bots/game_threads/__init__.py @@ -2375,7 +2375,7 @@ def postgame_thread_update_loop(self, pk): ) postGameThread = self.reddit.submission(pgThread[0]["id"]) if not postGameThread.author: - self.log.warning("Game day thread appears to have been deleted.") + self.log.warning("Post game thread appears to have been deleted.") q = "update {}threads set deleted=1 where id='{}';".format( self.dbTablePrefix, postGameThread.id )