diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-16 23:02:59 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-16 23:02:59 +0200 |
commit | 319b648d0f2d30c457c56df860dcecf89c80157a (patch) | |
tree | 8e4cfd58f79d47890110896450effdcf7e66721c /commands/bridge_rm.go | |
parent | f70e775dbd7c53ebb6e3cd2ec1af8d73d13449b0 (diff) | |
download | git-bug-319b648d0f2d30c457c56df860dcecf89c80157a.tar.gz |
Naming fixes
Diffstat (limited to 'commands/bridge_rm.go')
-rw-r--r-- | commands/bridge_rm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bridge_rm.go b/commands/bridge_rm.go index 80a831ff..5d38083c 100644 --- a/commands/bridge_rm.go +++ b/commands/bridge_rm.go @@ -15,7 +15,7 @@ func runBridgeRm(cmd *cobra.Command, args []string) error { defer backend.Close() interrupt.RegisterCleaner(backend.Close) - err = bridge.RemoveBridges(backend, args[0]) + err = bridge.RemoveBridge(backend, args[0]) if err != nil { return err } |