From e637acecdbe30786dc317dc1be16da88ebcabe29 Mon Sep 17 00:00:00 2001 From: James Scott Date: Mon, 17 Dec 2012 21:18:36 -0500 Subject: [PATCH] msg is a private should address it accordingly --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index 0f26a42..eba4b85 100644 --- a/plugin.py +++ b/plugin.py @@ -205,7 +205,7 @@ class Cah(callbacks.Plugin): winner = self._findHighScore(cah.score) for name, score in cah.score.iteritems(): formattedScores.append("%s: %d" % (name, score)) - self.msg(channel, "Game Over! %s is the Winner! Scores: %s " % (winner[0][0], ", ".join(formattedScores))) + self._msg(channel, "Game Over! %s is the Winner! Scores: %s " % (winner[0][0], ", ".join(formattedScores))) def endround(self):