diff options
Diffstat (limited to 'commands/msg/read.go')
-rw-r--r-- | commands/msg/read.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/msg/read.go b/commands/msg/read.go index 08881894..325b7760 100644 --- a/commands/msg/read.go +++ b/commands/msg/read.go @@ -1,9 +1,9 @@ package msg import ( + "fmt" "sync" "time" - "fmt" "git.sr.ht/~sircmpwn/getopt" @@ -171,7 +171,7 @@ func (FlagMsg) Execute(aerc *widgets.Aerc, args []string) error { go func() { wg.Wait() if success { - aerc.PushStatus(actionName + " flag '" + flagName + "' successful", 10*time.Second) + aerc.PushStatus(actionName+" flag '"+flagName+"' successful", 10*time.Second) } }() |