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 {