diff options
author | Jeffas <dev@jeffas.io> | 2019-07-23 19:46:32 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-07-25 18:12:05 -0400 |
commit | 454151922558f2e82cc7f7d935d74940afa0107b (patch) | |
tree | f1ed81b66269e25d47a867da57132ae0ca1e9586 /commands/msg | |
parent | 1cf90897f74f7f727710a9e61e9c835a040918bf (diff) | |
download | aerc-454151922558f2e82cc7f7d935d74940afa0107b.zip |
Add space which was missing
Diffstat (limited to 'commands/msg')
-rw-r--r-- | commands/msg/read.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/msg/read.go b/commands/msg/read.go index 5dd02f8..8999627 100644 --- a/commands/msg/read.go +++ b/commands/msg/read.go @@ -33,7 +33,7 @@ func (_ Read) Execute(aerc *widgets.Aerc, args []string) error { return err } if optind != len(args) { - return errors.New("Usage: " + args[0] + "[-t]") + return errors.New("Usage: " + args[0] + " [-t]") } var toggle bool |