diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-04-24 12:59:40 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-04-24 12:59:40 -0400 |
commit | 6f8ad918240fecc10ef4ef93768853157287c13d (patch) | |
tree | 5e91e81d5c23fed9fc455a9fd5f534f0276e78a4 /commands/account | |
parent | 92f59ef94af4ce936a5ea3a4407360e558317744 (diff) | |
download | aerc-6f8ad918240fecc10ef4ef93768853157287c13d.tar.gz |
gofmt fixes
Diffstat (limited to 'commands/account')
-rw-r--r-- | commands/account/mkdir.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/mkdir.go b/commands/account/mkdir.go index 9d16063..4352a42 100644 --- a/commands/account/mkdir.go +++ b/commands/account/mkdir.go @@ -40,7 +40,7 @@ func (MakeDir) Execute(aerc *widgets.Aerc, args []string) error { aerc.PushStatus("Directory created.", 10*time.Second) acct.Directories().Select(name) case *types.Error: - aerc.PushError(" "+msg.Error.Error()) + aerc.PushError(" " + msg.Error.Error()) } }) return nil |