From d5309eff30b1a826f075b28935de2a4b89eede6e Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Sun, 18 Jul 2010 18:02:04 +0100 Subject: Fixed references to nova.utils that were broken by a change of import statement in the remove-vendor merge. --- nova/compute/linux_net.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nova/compute') diff --git a/nova/compute/linux_net.py b/nova/compute/linux_net.py index 7b6ae693a..00c64d81a 100644 --- a/nova/compute/linux_net.py +++ b/nova/compute/linux_net.py @@ -33,13 +33,13 @@ def execute(cmd): logging.debug("FAKE NET: %s" % cmd) return "fake", 0 else: - return nova.utils.execute(cmd) + return utils.execute(cmd) def runthis(desc, cmd): if FLAGS.fake_network: return execute(cmd) else: - return nova.utils.runthis(desc,cmd) + return utils.runthis(desc,cmd) def Popen(cmd): if FLAGS.fake_network: -- cgit