Why does this work:
Code:
def populate_article_metadata(self, article, soup, first):
article.title='Hello'
but this doesn't work:
Code:
def populate_article_metadata(self, article, soup, first):
article.date = '1/25/2014'
Or do you think it is something I am doing wrong elsewhere in the recipe?