Submitter | phabricator |
---|---|
Date | Feb. 5, 2018, 2:27 p.m. |
Message ID | <def1ffae8c473cd3de22d26d5382e005@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/27322/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -396,12 +396,14 @@ self.comments.append('') self.comments.append(message) - def __str__(self): + def __bytes__(self): s = '\n'.join(self.comments).rstrip() if not s: return '' return s + '\n\n' + __str__ = encoding.strmethod(__bytes__) + def _delmsg(self): '''Remove existing message, keeping the rest of the comments fields. If comments contains 'subject: ', message will prepend