From: Brad Hall Date: Fri, 24 Jun 2011 18:20:03 +0000 (-0700) Subject: Fix cut and paste error in api_unplug_iface X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=55338cfd4f841491f9e0b35ba03512b5948d2e64;p=openstack-build%2Fneutron-build.git Fix cut and paste error in api_unplug_iface This fixes lp issue: https://bugs.launchpad.net/quantum/+bug/801598 --- diff --git a/quantum/cli.py b/quantum/cli.py index 8663d548b..6c653097d 100644 --- a/quantum/cli.py +++ b/quantum/cli.py @@ -318,8 +318,7 @@ def api_unplug_iface(client, *args): output = res.read() LOG.debug(output) if res.status != 202: - LOG.error("Failed to unplug iface from port \"%s\": %s" % (vid, - pid, output)) + LOG.error("Failed to unplug iface from port \"%s\": %s" % (pid, output)) return print "Unplugged interface from port:%s on network:%s" % (pid, nid)