Quote:
your print=true is being discarded during the redirect. To get around it you would need to implement the get_article_url method in your recipe to resolve the correct article url.
|
To do this, add this to your recipe.
Code:
def get_article_url(self, article):
print article
return None
The recipe won't produce anything, but you can check the printed results to see if the link you need is in there. You can check to see what link you need by checking where the print version link points to.