command/refresh: Fix import formats to prevent flapping

This commit is contained in:
James Nugent 2015-11-27 15:10:42 +00:00
parent a1d05e2a4c
commit a5e51f6dad
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package command package command
import ( import (
"bytes"
"io/ioutil" "io/ioutil"
"os" "os"
"path/filepath" "path/filepath"
@ -8,7 +9,6 @@ import (
"strings" "strings"
"testing" "testing"
"bytes"
"github.com/hashicorp/terraform/terraform" "github.com/hashicorp/terraform/terraform"
"github.com/mitchellh/cli" "github.com/mitchellh/cli"
) )