diff options
Diffstat (limited to 'caddyhttp/errors/errors.go')
-rw-r--r-- | caddyhttp/errors/errors.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/caddyhttp/errors/errors.go b/caddyhttp/errors/errors.go index fd09f8fb1..5e10b2d04 100644 --- a/caddyhttp/errors/errors.go +++ b/caddyhttp/errors/errors.go @@ -24,8 +24,8 @@ import ( "strings" "time" - "github.com/mholt/caddy" - "github.com/mholt/caddy/caddyhttp/httpserver" + "github.com/caddyserver/caddy" + "github.com/caddyserver/caddy/caddyhttp/httpserver" ) func init() { @@ -142,7 +142,7 @@ func (h ErrorHandler) recovery(w http.ResponseWriter, r *http.Request) { } // Trim file path - delim := "/github.com/mholt/caddy/" + delim := "/github.com/caddyserver/caddy/" pkgPathPos := strings.Index(file, delim) if pkgPathPos > -1 && len(file) > pkgPathPos+len(delim) { file = file[pkgPathPos+len(delim):] |