summaryrefslogtreecommitdiff
path: root/widgets/account-wizard.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2020-04-24 12:59:40 -0400
committerDrew DeVault <sir@cmpwn.com>2020-04-24 12:59:40 -0400
commit6f8ad918240fecc10ef4ef93768853157287c13d (patch)
tree5e91e81d5c23fed9fc455a9fd5f534f0276e78a4 /widgets/account-wizard.go
parent92f59ef94af4ce936a5ea3a4407360e558317744 (diff)
downloadaerc-6f8ad918240fecc10ef4ef93768853157287c13d.zip
gofmt fixes
Diffstat (limited to 'widgets/account-wizard.go')
-rw-r--r--widgets/account-wizard.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/account-wizard.go b/widgets/account-wizard.go
index e9bd843..6f93367 100644
--- a/widgets/account-wizard.go
+++ b/widgets/account-wizard.go
@@ -414,7 +414,7 @@ func (wizard *AccountWizard) ConfigureTemporaryAccount(temporary bool) {
func (wizard *AccountWizard) errorFor(d ui.Interactive, err error) {
if d == nil {
- wizard.aerc.PushError(" "+err.Error())
+ wizard.aerc.PushError(" " + err.Error())
wizard.Invalidate()
return
}
@@ -429,7 +429,7 @@ func (wizard *AccountWizard) errorFor(d ui.Interactive, err error) {
wizard.step = step
wizard.focus = focus
wizard.Focus(true)
- wizard.aerc.PushError(" "+err.Error())
+ wizard.aerc.PushError(" " + err.Error())
wizard.Invalidate()
return
}
@@ -540,7 +540,7 @@ func (wizard *AccountWizard) finish(tutorial bool) {
term.OnClose = func(err error) {
wizard.aerc.RemoveTab(term)
if err != nil {
- wizard.aerc.PushError(" "+err.Error())
+ wizard.aerc.PushError(" " + err.Error())
}
}
}