summaryrefslogtreecommitdiffstats
path: root/nova/compute
diff options
context:
space:
mode:
Diffstat (limited to 'nova/compute')
-rw-r--r--nova/compute/linux_net.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/compute/linux_net.py b/nova/compute/linux_net.py
index eb9614194..48e07da66 100644
--- a/nova/compute/linux_net.py
+++ b/nova/compute/linux_net.py
@@ -37,13 +37,13 @@ def execute(cmd, addl_env=None):
logging.debug("FAKE NET: %s" % cmd)
return "fake", 0
else:
- return nova.utils.execute(cmd, addl_env=addl_env)
+ return utils.execute(cmd, addl_env=addl_env)
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: