summaryrefslogtreecommitdiff
path: root/alot/commands/thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands/thread.py')
-rw-r--r--alot/commands/thread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index c15808c5..1e91c2d4 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -130,7 +130,7 @@ class ReplyCommand(Command):
subject = reply_subject_hook(subject)
else:
rsp = settings.get('reply_subject_prefix')
- if not subject.startwith(('Re:', rsp)):
+ if not subject.startswith(('Re:', rsp)):
subject = rsp + subject
envelope.add('Subject', subject)
@@ -252,7 +252,7 @@ class ForwardCommand(Command):
subject = forward_subject_hook(subject)
else:
fsp = settings.get('forward_subject_prefix')
- if not subject.startwith(('Fwd:', fsp)):
+ if not subject.startswith(('Fwd:', fsp)):
subject = fsp + subject
envelope.add('Subject', subject)