diff options
author | Moritz Poldrack <git@moritz.sh> | 2022-08-17 16:19:45 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-08-22 09:30:19 +0200 |
commit | 9cffc45f0347e5c8b801c151955fa9326b9b2ba7 (patch) | |
tree | 4de8e74f1ec7378297185f65807cb9019caf1a1a /commands/msgview/open.go | |
parent | 1b91b68e7385239783bee818974c4ce2032b7039 (diff) | |
download | aerc-9cffc45f0347e5c8b801c151955fa9326b9b2ba7.tar.gz |
go: removed io/ioutil
Since the minimum required version of Go has been bumped to 1.16, the
deprecation of io/ioutil can now be acted upon. This Commit removes the
remaining dependencies on ioutil and replaces them with their io or os
counterparts.
Signed-off-by: Moritz Poldrack <git@moritz.sh>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/msgview/open.go')
-rw-r--r-- | commands/msgview/open.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/msgview/open.go b/commands/msgview/open.go index 05a3c63c..f3723fbc 100644 --- a/commands/msgview/open.go +++ b/commands/msgview/open.go @@ -3,7 +3,6 @@ package msgview import ( "fmt" "io" - "io/ioutil" "mime" "os" "time" @@ -60,7 +59,7 @@ func (Open) Execute(aerc *widgets.Aerc, args []string) error { } } - tmpFile, err := ioutil.TempFile(os.TempDir(), "aerc-*"+extension) + tmpFile, err := os.CreateTemp(os.TempDir(), "aerc-*"+extension) if err != nil { aerc.PushError(err.Error()) return |