Skip to content

Commit

Permalink
Update reference to envelope.body
Browse files Browse the repository at this point in the history
which now should be body_txt as of e067ea2

fixes #1468
  • Loading branch information
pazz committed Feb 16, 2020
1 parent 27c4aad commit 28a4296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alot/commands/globals.py
Expand Up @@ -869,7 +869,7 @@ async def _set_signature(self, ui):
mimetype = helper.guess_mimetype(sigcontent)
if mimetype.startswith('text'):
sigcontent = helper.try_decode(sigcontent)
self.envelope.body += '\n' + sigcontent
self.envelope.body_txt += '\n' + sigcontent
else:
ui.notify('could not locate signature: %s' % sig,
priority='error')
Expand Down

0 comments on commit 28a4296

Please sign in to comment.