Set the message's "info" string.
(self, info)
| 1657 | return self._info |
| 1658 | |
| 1659 | def set_info(self, info): |
| 1660 | """Set the message's "info" string.""" |
| 1661 | if isinstance(info, str): |
| 1662 | self._info = info |
| 1663 | else: |
| 1664 | raise TypeError('info must be a string: %s' % type(info)) |
| 1665 | |
| 1666 | def _explain_to(self, message): |
| 1667 | """Copy Maildir-specific state to message insofar as possible.""" |