From f186dd01faa730a0d51902b7ddd0619ecabe17bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phan=20Kochen?= Date: Mon, 9 Feb 2004 23:54:56 +0000 Subject: [PATCH] Small buggeh. --- tools/channeldbConvert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/channeldbConvert.py b/tools/channeldbConvert.py index cbd832a6f..d67ef1323 100755 --- a/tools/channeldbConvert.py +++ b/tools/channeldbConvert.py @@ -64,7 +64,7 @@ if __name__ == '__main__': smileys, topics, words FROM user_stats ORDER BY user_id""") for t in cursor.fetchall(): - fd.write('%s,%s' % (channel, ','.join(map(str, L)))) + fd.write('%s,%s' % (channel, ','.join(map(str, t)))) fd.write(os.linesep) fd.close()