aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-10-06 11:55:16 +0200
committerMichael Muré <batolettre@gmail.com>2018-10-06 11:55:16 +0200
commit64133ee5ba4b03e2f7f2f2161b1d551a97bd0d80 (patch)
tree9459d5c83f38441985c003a1a306783c47ddfaf8 /commands
parent558e149b2524864beff3912f44fdb887edeb7ac5 (diff)
downloadgit-bug-64133ee5ba4b03e2f7f2f2161b1d551a97bd0d80.tar.gz
github: deal with the deleted user case where github return a null actor
Diffstat (limited to 'commands')
-rw-r--r--commands/bridge_pull.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bridge_pull.go b/commands/bridge_pull.go
index fc12d369..521f2d9c 100644
--- a/commands/bridge_pull.go
+++ b/commands/bridge_pull.go
@@ -19,7 +19,7 @@ func runBridgePull(cmd *cobra.Command, args []string) error {
if len(args) == 0 {
b, err = bridge.DefaultBridge(backend)
} else {
- b, err = bridge.NewBridgeFullName(backend, args[0])
+ b, err = bridge.NewBridgeFromFullName(backend, args[0])
}
if err != nil {