summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-11-20 15:16:37 +0100
committerAnton Khirnov <anton@khirnov.net>2021-11-20 15:16:37 +0100
commit50f3c8ebac50ea9804f79ab0890801b00bed000f (patch)
treefeee6475ac986b62bab977c62b5332cb7ca99319
parentadc7dce780d81d3ffb0d726213e4393ae93fbb5a (diff)
commands/thread: fix action name for forwarding email
-rw-r--r--alot/commands/thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index 00267418..3e0bba01 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -376,7 +376,7 @@ class ForwardCommand(Command):
# set From-header and sending account
try:
- from_header, account = determine_sender(message.headers, 'reply')
+ from_header, account = determine_sender(message.headers, 'forward')
except AssertionError as e:
ui.notify(str(e), priority='error')
return