> I would like my program to continue on the next line after an uncaught > exception, > is that possible ?
try:
# here is your error
except:
pass
# this will get executed no matter what
See http://docs.python.org/tutorial/errors.html
HTH,
Daniel
--
Psss, psss, put it down! - http://www.cafepress.com/putitdown
--
http://mail.python.org/mailman/listinfo/python-list
