From f7658ccfdf981616ab6bce87dc3ad1d935250ccb Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Sat, 17 Sep 2011 21:35:55 -0400 Subject: [PATCH] fix mlihp --- modules/mylife.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mylife.py b/modules/mylife.py index 3a841fd..560d713 100644 --- a/modules/mylife.py +++ b/modules/mylife.py @@ -115,7 +115,7 @@ def mlihp(phenny, input): return doc = lxml.html.parse(req) - quote = doc.getroot().find_class('oldlink')[0][0].text_content() + quote = doc.getroot().find_class('oldlink')[0].text_content() phenny.say(quote) mlihp.commands = ['mlihp']