summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/head.py2
-rwxr-xr-xmodules/info.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/head.py b/modules/head.py
index 274e1b0..231ffdb 100755
--- a/modules/head.py
+++ b/modules/head.py
@@ -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:
diff --git a/modules/info.py b/modules/info.py
index c3d13ef..dbf2d44 100755
--- a/modules/info.py
+++ b/modules/info.py
@@ -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