[libvirt] [test-API][PATCH] Delete the unused util param

Wayne Sun gsun at redhat.com
Tue Aug 7 11:31:40 UTC 2012


  The util is undefined and cause case run fail, it's with no use
  and should be deleted.

Signed-off-by: Wayne Sun <gsun at redhat.com>
---
 repos/interface/create.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/repos/interface/create.py b/repos/interface/create.py
index 50d92d2..f5ef308 100644
--- a/repos/interface/create.py
+++ b/repos/interface/create.py
@@ -25,7 +25,7 @@ def display_current_interface(conn):
     logger.debug("current defined host interface list: %s " \
 % conn.listDefinedInterfaces())
 
-def check_create_interface(ifacename, util):
+def check_create_interface(ifacename):
     """Check creating interface result, it will can ping itself
        if create interface is successful.
     """
@@ -67,7 +67,7 @@ def create(params):
         ifaceobj.create(0)
         logger.info("create host interface %s" % ifacename)
         display_current_interface(conn)
-        if check_create_interface(ifacename, util):
+        if check_create_interface(ifacename):
             logger.info("create host interface %s is successful" % ifacename)
         else:
             logger.error("fail to check create interface")
-- 
1.7.1




More information about the libvir-list mailing list