diff options
Diffstat (limited to 'commands/account/rmdir.go')
-rw-r--r-- | commands/account/rmdir.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/rmdir.go b/commands/account/rmdir.go index ed24ca50..9cd974ff 100644 --- a/commands/account/rmdir.go +++ b/commands/account/rmdir.go @@ -86,7 +86,7 @@ func (RemoveDir) Execute(aerc *widgets.Aerc, args []string) error { case *types.Done: aerc.PushStatus("Directory removed.", 10*time.Second) case *types.Error: - aerc.PushError(" " + msg.Error.Error()) + aerc.PushError(msg.Error.Error()) case *types.Unsupported: aerc.PushError(":rmdir is not supported by the backend.") } |