View Single Post
Old 02-06-2013, 02:58 PM   #7
surf
Member
surf began at the beginning.
 
Posts: 22
Karma: 10
Join Date: Feb 2013
Device: kindle
Quote:
Originally Posted by kovidgoyal View Post
Call the base class parse_feeds, iterate over the returned value setting the description to an empty string for each entry.
Done with following codes

def parse_feeds(self):

feeds = BasicNewsRecipe.parse_feeds(self)

for currFeed in feeds:
for a,currArticle in enumerate(currFeed.articles):
currArticle.summary = ''

return feeds

Thank you!
surf is offline   Reply With Quote