If I was to have the following bit of code:
try:
execfile("script.py")
except ## unsure what exception goes here...
continue:
try:
execfile("other.py")
except ## unsure what exception goes here...
continue:
How do I catch all errors from script.py save it to file and then continue onto the next called script
Anyone have any ideas or clues?