aboutsummaryrefslogtreecommitdiffstats
path: root/commands/account
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account')
-rw-r--r--commands/account/split.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/commands/account/split.go b/commands/account/split.go
index 2b802256..284182dc 100644
--- a/commands/account/split.go
+++ b/commands/account/split.go
@@ -55,9 +55,7 @@ func (Split) Execute(aerc *widgets.Aerc, args []string) error {
n = 0
}
if args[0] == "split" {
- acct.Split(n)
- return nil
+ return acct.Split(n)
}
- acct.Vsplit(n)
- return nil
+ return acct.Vsplit(n)
}