diff --git a/importer/dagwriter/dagmodifier.go b/importer/dagwriter/dagmodifier.go index c8a5bbc44..5ceb067d8 100644 --- a/importer/dagwriter/dagmodifier.go +++ b/importer/dagwriter/dagmodifier.go @@ -4,7 +4,7 @@ import ( "bytes" "errors" - "code.google.com/p/goprotobuf/proto" + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto" imp "github.com/jbenet/go-ipfs/importer" ft "github.com/jbenet/go-ipfs/importer/format" diff --git a/importer/format/format.go b/importer/format/format.go index 1fd5fe0f5..19be4e556 100644 --- a/importer/format/format.go +++ b/importer/format/format.go @@ -5,7 +5,7 @@ package format import ( "errors" - "code.google.com/p/goprotobuf/proto" + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto" ) func FromBytes(data []byte) (*PBData, error) { diff --git a/importer/format/format_test.go b/importer/format/format_test.go index 06194aefc..bd234d7a6 100644 --- a/importer/format/format_test.go +++ b/importer/format/format_test.go @@ -3,7 +3,7 @@ package format import ( "testing" - "code.google.com/p/goprotobuf/proto" + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto" ) func TestMultiBlock(t *testing.T) {