aboutsummaryrefslogtreecommitdiffstats
path: root/commands/pwd.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/pwd.go')
-rw-r--r--commands/pwd.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/pwd.go b/commands/pwd.go
index d3f0e0c1..fc9a411a 100644
--- a/commands/pwd.go
+++ b/commands/pwd.go
@@ -3,7 +3,6 @@ package commands
import (
"errors"
"os"
- "time"
"git.sr.ht/~sircmpwn/aerc/widgets"
)
@@ -30,6 +29,6 @@ func (PrintWorkDir) Execute(aerc *widgets.Aerc, args []string) error {
if err != nil {
return err
}
- aerc.PushStatus(pwd, 10*time.Second)
+ aerc.PushStatus(pwd)
return nil
}