aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_pull.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bridge_pull.go')
-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 f9958882..c7a22d6d 100644
--- a/commands/bridge_pull.go
+++ b/commands/bridge_pull.go
@@ -23,7 +23,7 @@ func runBridgePull(cmd *cobra.Command, args []string) error {
if len(args) == 0 {
b, err = bridge.DefaultBridge(backend)
} else {
- b, err = bridge.NewBridgeFromFullName(backend, args[0])
+ b, err = bridge.LoadBridge(backend, args[0])
}
if err != nil {