From 8acb7275de43f126cc3fdb8f701dbeca22338d5b Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Sat, 4 Aug 2012 06:01:32 +0100 Subject: maint: remove an unused import in libvirt.driver This import was recently reintroduced, due to confusing pylint output. Therefore remove it again and adjust things so pylint won't warn in future. Change-Id: I25f293f171c651c25d27e8d55c9240fd808590ba --- nova/tests/test_libvirt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/tests') diff --git a/nova/tests/test_libvirt.py b/nova/tests/test_libvirt.py index 99e81add2..c6e2b6580 100644 --- a/nova/tests/test_libvirt.py +++ b/nova/tests/test_libvirt.py @@ -1565,7 +1565,7 @@ class LibvirtConnTestCase(test.TestCase): fake_none) conn.ensure_filtering_rules_for_instance(instance_ref, network_info, - time=fake_timer) + time_module=fake_timer) except exception.NovaException, e: c1 = (0 <= str(e).find('Timeout migrating for')) self.assertTrue(c1) -- cgit