From 8f1f2950cc0fb6212f01d5877ef1dcde537e7d6a Mon Sep 17 00:00:00 2001 From: rainyday Date: Fri, 26 Nov 2010 05:00:55 +0800 Subject: [PATCH] Fixed somethingawful plugin to look for author class instead of op. --- plugins/somethingawful.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/somethingawful.py b/plugins/somethingawful.py index 472f05c..191b059 100644 --- a/plugins/somethingawful.py +++ b/plugins/somethingawful.py @@ -36,7 +36,7 @@ def forum_link(inp, bot=None): thread_title = breadcrumbs[-1] forum_title = forum_abbrevs.get(breadcrumbs[-2], breadcrumbs[-2]) - poster = thread.xpath('//dt[contains(@class, op)]//text()')[0] + poster = thread.xpath('//dt[contains(@class, author)]//text()')[0] # 1 post per page => n_pages = n_posts num_posts = thread.xpath('//a[@title="last page"]/@href')