threadinfo.py 173 B

123456789
  1. from util import commands
  2. @commands(".threadinfo")
  3. def thread_info(bot, message, channel):
  4. threads = bot.blist.get()
  5. print threads
  6. for t in threads:
  7. print dir(t)