Skip to content

Commit

Permalink
fix import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lestrrat committed Jul 10, 2016
1 parent 4228855 commit 8b481e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion octav/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"github.com/lestrrat/go-apache-logformat"
"github.com/lestrrat/go-jsval"
"github.com/lestrrat/go-pdebug"
"github.com/pkg/errors"
"golang.org/x/net/context"
)

Expand Down Expand Up @@ -534,7 +535,7 @@ func doCreateSession(ctx context.Context, w http.ResponseWriter, r *http.Request
}

if err := s.Decorate(tx, &v); err != nil {
httpError(w, `CreateSession`, http.StatusInternalServerError, errors.Wrap(err)
httpError(w, `CreateSession`, http.StatusInternalServerError, errors.Wrap(err))
return
}

Expand Down

0 comments on commit 8b481e3

Please sign in to comment.