communicator/ssh: fix bad imports

This commit is contained in:
Mitchell Hashimoto 2014-04-26 11:19:37 -07:00
parent 5fac6c79c4
commit b24fe263da
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ package ssh
import (
"bufio"
"bytes"
"code.google.com/p/gosshold/ssh"
"code.google.com/p/go.crypto/ssh"
"errors"
"fmt"
"github.com/mitchellh/packer/packer"

View File

@ -1,7 +1,7 @@
package ssh
import (
"code.google.com/p/gosshold/ssh"
"code.google.com/p/go.crypto/ssh"
"reflect"
"testing"
)