Update vendor libraries and dendrite to s/Sirupsen/sirupsen/ (#304)

This commit is contained in:
Erik Johnston 2017-10-13 14:42:57 +01:00 committed by GitHub
parent d66244cb0a
commit 464fb5de1c
39 changed files with 41 additions and 41 deletions

4
vendor/manifest vendored
View file

@ -129,7 +129,7 @@
{
"importpath": "github.com/matrix-org/dugong",
"repository": "https://github.com/matrix-org/dugong",
"revision": "193b8f88e381d12f2d53023fba25e43fc81dc5ac",
"revision": "f04553160a2b197248e032f4fe23d57b9af20cde",
"branch": "master"
},
{
@ -153,7 +153,7 @@
{
"importpath": "github.com/matrix-org/util",
"repository": "https://github.com/matrix-org/util",
"revision": "cf7e2e3871b7ae39106a1763312deaaf0c139531",
"revision": "8b1c8ab81986c1ce7f06a52fce48f4a1156b66ee",
"branch": "master"
},
{

View file

@ -3,8 +3,8 @@ Logging utilities for [logrus](https://github.com/Sirupsen/logrus).
To develop on this library, you need logrus on your GOPATH:
``go get github.com/Sirupsen/logrus``
``go get github.com/sirupsen/logrus``
You can then run its tests by running
``go test``

View file

@ -3,7 +3,7 @@ package dugong
import (
"compress/gzip"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"io"
"os"
"path/filepath"

View file

@ -3,7 +3,7 @@ package dugong
import (
"bufio"
"encoding/json"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"io/ioutil"
"os"
"path/filepath"

View file

@ -3,7 +3,7 @@ package util
import (
"context"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
// contextKeys is a type alias for string to namespace Context keys per-package.

View file

@ -8,7 +8,7 @@ import (
"runtime/debug"
"time"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
// JSONResponse represents an HTTP response which contains a JSON body.

View file

@ -7,7 +7,7 @@ import (
"net/http/httptest"
"testing"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
type MockJSONRequestHandler struct {