From feaad5ccc8a9daff74a83044b68508467305d61b Mon Sep 17 00:00:00 2001 From: Juan Fuentes Date: Thu, 4 Sep 2014 11:44:25 -0400 Subject: [PATCH] Fix import path. --- usbid/describe.go | 2 +- usbid/load.go | 2 +- usbid/parse.go | 2 +- usbid/parse_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/usbid/describe.go b/usbid/describe.go index 4850b6c..6f189f3 100644 --- a/usbid/describe.go +++ b/usbid/describe.go @@ -26,7 +26,7 @@ package usbid import ( "fmt" - "github.com/kylelemons/gousb/usb" + "github.com/xmonk/gousb/usb" ) // Describe returns a human readable string describing the vendor and product diff --git a/usbid/load.go b/usbid/load.go index b787d83..956f6b1 100644 --- a/usbid/load.go +++ b/usbid/load.go @@ -19,7 +19,7 @@ import ( "net/http" "strings" - "github.com/kylelemons/gousb/usb" + "github.com/xmonk/gousb/usb" ) const ( diff --git a/usbid/parse.go b/usbid/parse.go index a12b162..3b04d11 100644 --- a/usbid/parse.go +++ b/usbid/parse.go @@ -21,7 +21,7 @@ import ( "strconv" "strings" - "github.com/kylelemons/gousb/usb" + "github.com/xmonk/gousb/usb" ) // A Vendor contains the name of the vendor and mappings corresponding to all diff --git a/usbid/parse_test.go b/usbid/parse_test.go index 05b3210..71ac3e2 100644 --- a/usbid/parse_test.go +++ b/usbid/parse_test.go @@ -19,7 +19,7 @@ import ( "strings" "testing" - "github.com/kylelemons/gousb/usb" + "github.com/xmonk/gousb/usb" ) func TestParse(t *testing.T) {