Chris Withers wrote:
Alexander Kapps wrote:
Instead you want something like:
except smtplib.SMTPException, msg
print "eroare: " + msg
Err, that's still concatenating a string and an exception object.
OUCH! What a stupid error. Thanks for correction. :-)
What *would* work is:
except s
Alexander Kapps wrote:
Instead you want something like:
except smtplib.SMTPException, msg
print "eroare: " + msg
Err, that's still concatenating a string and an exception object.
What *would* work is:
except smtplib.SMTPException, msg
print "eroare: " + str(msg)
...not that it's pa
sandric ionut wrote:
Three things: When quoting code, do it exactly, and without wordwrap
in your mail program. There are so many typos in that code sample that
it's useless, presumably because you didn't use copy/paste
The code was COPY and PASTE -> presume wrong
When quoting an