Fixed a SyntaxError.

This commit is contained in:
Jeremy Fincher 2004-02-09 15:57:05 +00:00
parent ef31ca7cab
commit a6b0c7de66
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ if __name__ == '__main__':
msgs, parts, quits, smileys, topics, words
FROM channel_stats""")
fd.write('%s,channelStats,%s' % \
(channel, ','join(map(str, cursor.fetchone()))))
(channel, ','.join(map(str, cursor.fetchone()))))
fd.write(os.linesep)
cursor.execute("""SELECT user_id, kicked, actions, chars, frowns,
joins, kicks, modes, msgs, parts, quits,