From bc1fd77d6b3bae0ca56a8128ab62a4283499b8c2 Mon Sep 17 00:00:00 2001 From: ericchiang Date: Mon, 10 Nov 2014 01:35:08 -0500 Subject: [PATCH] switched import paths for go subrepos --- display.go | 4 ++-- pup.go | 4 ++-- selector.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/display.go b/display.go index e81a336..70c3061 100644 --- a/display.go +++ b/display.go @@ -6,8 +6,8 @@ import ( "regexp" "strings" - "code.google.com/p/go.net/html" - "code.google.com/p/go.net/html/atom" + "golang.org/x/net/html" + "golang.org/x/net/html/atom" "github.com/fatih/color" "github.com/mattn/go-colorable" ) diff --git a/pup.go b/pup.go index 961553f..2ffd8ee 100644 --- a/pup.go +++ b/pup.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "code.google.com/p/go.net/html" - "code.google.com/p/go.net/html/charset" + "golang.org/x/net/html" + "golang.org/x/net/html/charset" ) // _=,_ diff --git a/selector.go b/selector.go index 694f028..1e61d32 100644 --- a/selector.go +++ b/selector.go @@ -8,7 +8,7 @@ import ( "strings" "text/scanner" - "code.google.com/p/go.net/html" + "golang.org/x/net/html" ) type Selector interface {