Small fixes

This commit is contained in:
Dennis Kaarsemaker
2006-06-26 21:00:02 +02:00
parent aea38c93ff
commit de92682c61
2 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import random, re, time, commands, urllib2
import supybot.ircmsgs as ircmsgs
_bofhfile = '/home/dennis/ubugtu/plugins/Mess/bofh.txt'
_bofhdata = open(bofhfile).readlines()
_bofhdata = [x.strip() for x in open(_bofhfile).readlines()]
class Mess(callbacks.PluginRegexp):
"""Random Mess plugin"""