good morning!
this is the answer:
Code:
def preprocess_html(self, soup):
self.log('\t checking for subscriber only content')
denied = soup.findAll(True,text='Subscribers')
if denied:
self.log('\t skipped, because content can only be seen with subscription')
print somthing
return soup
copy this to the code and this should work.