all repos — homestead @ 4c07535d9120fb999b0c008f1866972865f424f7

Code for my website

replace tozd/errors with Southclaws/fault

Alan Pearce
commit

4c07535d9120fb999b0c008f1866972865f424f7

parent

90a4ac43b915abb7a2949f4b5313b40d705b6071

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M internal/multibuf/writecloser.gointernal/multibuf/writecloser.go
@@ -3,7 +3,7 @@
import ( "io" - "gitlab.com/tozd/go/errors" + "github.com/Southclaws/fault" ) type WriteCloser struct {
@@ -32,5 +32,5 @@ lastErr = err
} } - return errors.WithStack(lastErr) + return fault.Wrap(lastErr) }