Re: Exception value cut off

2005-05-12 Thread Fredrik Lundh
"Ryan, Adam" wrote: > sys.exc_info()[1] returns the first 308 characters of an error message from > a module. Is there a way to increase the length so it doesn't get cut off? sys.exc_info()[1] returns the entire contents of the exception parameter. if it's cut off, it's either cut off by the cod

Exception value cut off

2005-05-12 Thread Ryan, Adam
sys.exc_info()[1] returns the first 308 characters of an error message from a module. Is there a way to increase the length so it doesn't get cut off? Cheers, Adam -- http://mail.python.org/mailman/listinfo/python-list