The __str__
method of the Mail
class, doesn't actually return anything
#292
Labels
status: help wanted
requesting help from the community
type: community enhancement
feature request not on Twilio's roadmap
Issue Summary
The
__str__
method of theMail
class, doesn't actually return anything, hence trying something likelogging.debug("Mail: %s\n", some_mail)
, wheresome_mail
is an instance of theMail
class, will result in an exception.Steps to Reproduce
Mail
classThis will result in a
TypeError
exception:One possible fix would be to replace
with
Technical details:
The text was updated successfully, but these errors were encountered: