From 0e201e701a3048071a2e0cf4a4cb67668a2c7447 Mon Sep 17 00:00:00 2001 From: Eric Chiang Date: Fri, 22 Jul 2016 21:42:23 -0700 Subject: [PATCH] *: revert Godep rewrite --- display.go | 7 +++---- parse.go | 6 +++--- pup.go | 2 +- selector.go | 2 +- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/display.go b/display.go index 58bdeb7..ae56eed 100644 --- a/display.go +++ b/display.go @@ -6,10 +6,9 @@ import ( "regexp" "strings" - "github.com/ericchiang/pup/Godeps/_workspace/src/github.com/fatih/color" - "github.com/ericchiang/pup/Godeps/_workspace/src/github.com/mattn/go-colorable" - "github.com/ericchiang/pup/Godeps/_workspace/src/golang.org/x/net/html" - "github.com/ericchiang/pup/Godeps/_workspace/src/golang.org/x/net/html/atom" + "github.com/fatih/color" + "golang.org/x/net/html" + "golang.org/x/net/html/atom" ) func init() { diff --git a/parse.go b/parse.go index 61226a3..0491743 100644 --- a/parse.go +++ b/parse.go @@ -7,9 +7,9 @@ import ( "strconv" "strings" - "github.com/ericchiang/pup/Godeps/_workspace/src/golang.org/x/net/html" - "github.com/ericchiang/pup/Godeps/_workspace/src/golang.org/x/net/html/charset" - "github.com/ericchiang/pup/Godeps/_workspace/src/golang.org/x/text/transform" + "golang.org/x/net/html" + "golang.org/x/net/html/charset" + "golang.org/x/text/transform" ) var ( diff --git a/pup.go b/pup.go index ca22d2b..cb2c90b 100644 --- a/pup.go +++ b/pup.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/ericchiang/pup/Godeps/_workspace/src/golang.org/x/net/html" + "golang.org/x/net/html" ) // _=,_ diff --git a/selector.go b/selector.go index eb02eac..36884ef 100644 --- a/selector.go +++ b/selector.go @@ -8,7 +8,7 @@ import ( "strings" "text/scanner" - "github.com/ericchiang/pup/Godeps/_workspace/src/golang.org/x/net/html" + "golang.org/x/net/html" ) type Selector interface {