summaryrefslogtreecommitdiffstats
path: root/pkg/commands/pull_request.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-02-11 21:30:27 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-02-11 22:39:17 +1100
commitcfe3605e6b29e23db8dca9eedecc58cb13341587 (patch)
treecff98f9663f184e0979a65135dfd6ab7078744a3 /pkg/commands/pull_request.go
parent3a607061a2303d9f45d308de652fbebe7300b43c (diff)
use go-errors package to display stacktrace of errors that cause panics
Diffstat (limited to 'pkg/commands/pull_request.go')
-rw-r--r--pkg/commands/pull_request.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/commands/pull_request.go b/pkg/commands/pull_request.go
index 043a3c07d..7f0a55334 100644
--- a/pkg/commands/pull_request.go
+++ b/pkg/commands/pull_request.go
@@ -1,9 +1,10 @@
package commands
import (
- "errors"
"fmt"
"strings"
+
+ "github.com/go-errors/errors"
)
// Service is a service that repository is on (Github, Bitbucket, ...)