diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-13 18:32:11 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-13 18:39:19 +0200 |
commit | 4c850b598939536b2e09ed520e427e94d0026211 (patch) | |
tree | 99c08f0e853cca023bcf5e6044964c630ae52299 /input/input.go | |
parent | df144e727a858ed07e3c9328d91efe052c4781e1 (diff) | |
download | git-bug-4c850b598939536b2e09ed520e427e94d0026211.tar.gz |
cleanup go imports
Diffstat (limited to 'input/input.go')
-rw-r--r-- | input/input.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/input/input.go b/input/input.go index 43fb9613..8e7f3d97 100644 --- a/input/input.go +++ b/input/input.go @@ -6,12 +6,13 @@ import ( "bufio" "bytes" "fmt" - "github.com/MichaelMure/git-bug/repository" - "github.com/pkg/errors" "io/ioutil" "os" "os/exec" "strings" + + "github.com/MichaelMure/git-bug/repository" + "github.com/pkg/errors" ) const messageFilename = "BUG_MESSAGE_EDITMSG" |