Closed vehystrix closed 5 years ago
Then using a content_title_selector in combination with an arbitrary site causes a crash.
The issue seems to be in sites/arbitrary.py on line 114: title = title[0].string should be changed to title = title_element[0].string
title = title[0].string
title = title_element[0].string
So it should! Thanks for pointing that out.
Then using a content_title_selector in combination with an arbitrary site causes a crash.
The issue seems to be in sites/arbitrary.py on line 114:
title = title[0].string
should be changed totitle = title_element[0].string