aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
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 {