diff options
Diffstat (limited to 'commands/pwd.go')
-rw-r--r-- | commands/pwd.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/pwd.go b/commands/pwd.go index d3f0e0c..fc9a411 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 } |