Hello friends, I have a small problem with printing/getting exceptions in 3.1 version.
My code is:
try:
# bla bla...
except Exception, e: # here I got error message "Invalid Syntax" in the comma
self.setError(e)
return False
What is the correct syntax in python 3.1 to get the exception message ?
Thanks.