From f476773faaa319e6fc0bdc24ae9e9ddb2a2d84b7 Mon Sep 17 00:00:00 2001 From: James Scott Date: Mon, 17 Dec 2012 19:35:37 -0500 Subject: [PATCH] fixed the score bug. --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index a49d996..03595f3 100644 --- a/plugin.py +++ b/plugin.py @@ -184,7 +184,7 @@ class Cah(callbacks.Plugin): #playerScores = sorted(cah.score.iteritems(), key=operator.itemgetter(1), reverse=True) #scores = [] winner = None - formattedScores = {} + formattedScores = [] for name, score in scores.iteritems(): if winner == None: winner = (name, score)