Added server password stuff from Javier.

This commit is contained in:
Sean B. Palmer
2010-01-13 13:11:32 +00:00
parent 5d48dd8ca7
commit 22aed08fae
6 changed files with 15 additions and 8 deletions

View File

@@ -113,7 +113,7 @@ def f_title(self, origin, match, args):
return
u = urllib2.urlopen(req)
bytes = u.read(32768)
bytes = u.read(262144)
u.close()
except IOError:

View File

@@ -47,7 +47,7 @@ def stats(phenny, input):
channels = {}
ignore = set(['f_note', 'startup', 'message', 'noteuri'])
for (name, user), count in phenny.stats.iteritems():
for (name, user), count in phenny.stats.items():
if name in ignore: continue
if not user: continue