Skip to content

Commit

Permalink
fix logrus import path (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
sishihara authored and wtnb75 committed Sep 19, 2019
1 parent a0ef7cf commit 546cab6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

yaml "gopkg.in/yaml.v2"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/mattn/go-shellwords"

"github.com/iij/p2pubapi"
Expand Down
2 changes: 1 addition & 1 deletion example/ls.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"text/tabwriter"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/urfave/cli"

Expand Down
2 changes: 1 addition & 1 deletion example/pubkey.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/iij/p2pubapi"
"github.com/iij/p2pubapi/protocol"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/urfave/cli"
)

Expand Down
2 changes: 1 addition & 1 deletion parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"text/template"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/iij/p2pubapi/protocol"
)
Expand Down

0 comments on commit 546cab6

Please sign in to comment.