testing branches

This commit is contained in:
rootcoma 2013-11-14 19:53:39 -08:00
parent 0f1ba16c5c
commit b59098baa3
1 changed files with 2 additions and 2 deletions

View File

@ -2606,14 +2606,14 @@ class TriviaTime(callbacks.Plugin):
c = self.conn.cursor()
weekSql = '''select id,
username,
sum(points_made),
sum(points_made) as points,
sum(num_answered)
from triviauserlog
where ('''
weekSql += weekSqlString
weekSql += ''' ) and channel_canonical=?
group by username_canonical
order by points_made desc
order by points desc
limit 10
'''
channelCanonical = ircutils.toLower(channel)