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 pazz#1468
  • Loading branch information
pazz committed Feb 16, 2020
1 parent f22960e commit 7ecc9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alot/commands/globals.py
Original file line number Diff line number Diff line change
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 7ecc9aa

Please sign in to comment.