From 55338cfd4f841491f9e0b35ba03512b5948d2e64 Mon Sep 17 00:00:00 2001 From: Brad Hall Date: Fri, 24 Jun 2011 11:20:03 -0700 Subject: [PATCH] Fix cut and paste error in api_unplug_iface This fixes lp issue: https://bugs.launchpad.net/quantum/+bug/801598 --- quantum/cli.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/quantum/cli.py b/quantum/cli.py index 8663d548b1..6c653097d0 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)