OK, I just spent an hour looking into this (from scratch - I'm not a programmer...), and I think I have a fix: just replace (in the stable recipe)
Quote:
for item in soup.findAll('div', attrs={'class':'cornerControls'}):
|
with
Quote:
for item in soup.findAll('div', attrs={'class':'js_title_row title_row'}):
|