
Jan. 28, 2023
8:11 p.m.
As a work-around, if there's only a handful of wrong records, catching the error and fixing the records in the DB does the job: ======= try: #file.write(soup.body.text) text = soup.body.text except AttributeError as error: file.write(str(error)) ========