Skip to content

Commit

Permalink
Fix import path.
Browse files Browse the repository at this point in the history
  • Loading branch information
xmonk committed Sep 4, 2014
1 parent 0f93fae commit feaad5c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion usbid/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion usbid/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"net/http"
"strings"

"github.com/kylelemons/gousb/usb"
"github.com/xmonk/gousb/usb"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion usbid/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion usbid/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"strings"
"testing"

"github.com/kylelemons/gousb/usb"
"github.com/xmonk/gousb/usb"
)

func TestParse(t *testing.T) {
Expand Down

0 comments on commit feaad5c

Please sign in to comment.