Set the message's "info" string.
(self, info)
| 1583 | return self._info |
| 1584 | |
| 1585 | def set_info(self, info): |
| 1586 | """Set the message's "info" string.""" |
| 1587 | if isinstance(info, str): |
| 1588 | self._info = info |
| 1589 | else: |
| 1590 | raise TypeError('info must be a string: %s' % type(info)) |
| 1591 | |
| 1592 | def _explain_to(self, message): |
| 1593 | """Copy Maildir-specific state to message insofar as possible.""" |