summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Santa Barbara <justin@fathomdb.com>2011-03-22 22:01:39 -0700
committerJustin Santa Barbara <justin@fathomdb.com>2011-03-22 22:01:39 -0700
commitc8e8b44ef27e49b3986659ee0cb6bd77b38430d8 (patch)
tree6c091754ac72a2ab3b12d879b5865025d4b6f6b3
parent365b98f4d52740ef85f8a8f098a32e441d7ac168 (diff)
Forgot this in the rename of check_instance -> check_isinstance
-rw-r--r--nova/compute/manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py
index 019bb3c89..b21f0b836 100644
--- a/nova/compute/manager.py
+++ b/nova/compute/manager.py
@@ -117,7 +117,7 @@ class ComputeManager(manager.Manager):
# and redocument the module docstring
if not compute_driver:
compute_driver = FLAGS.compute_driver
- self.driver = utils.check_instance(utils.import_object(
+ self.driver = utils.check_isinstance(utils.import_object(
compute_driver),
driver.ComputeDriver)
self.network_manager = utils.import_object(FLAGS.network_manager)