summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--commands/msg/recall.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/msg/recall.go b/commands/msg/recall.go
index b6b850c..443f8e4 100644
--- a/commands/msg/recall.go
+++ b/commands/msg/recall.go
@@ -53,8 +53,8 @@ func (Recall) Execute(aerc *widgets.Aerc, args []string) error {
return errors.New("No account selected")
}
if acct.SelectedDirectory() != acct.AccountConfig().Postpone && !force {
- return errors.New("Can only recall from the postpone directory: " +
- acct.AccountConfig().Postpone)
+ return errors.New("Use -f to recall from outside the " +
+ acct.AccountConfig().Postpone + " directory.")
}
store := widget.Store()
if store == nil {