Open eexit opened 10 years ago
I was running errors when importing my file and it really bothered me to have a single Parse error on: post title...
Parse error on: post title
I suggest you to add this:
import traceback // ... try: out.write(html2fmt(i['body'], target_format)) except: print "\n Parse error on: " + i['title'] traceback.print_exc(file=sys.stdout)
So we could have more details about the exception.
Thanks,
I was running errors when importing my file and it really bothered me to have a single
Parse error on: post title
...I suggest you to add this:
So we could have more details about the exception.
Thanks,