summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/virt/xenapi/vm_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/virt/xenapi/vm_utils.py b/nova/virt/xenapi/vm_utils.py
index eaf5bb391..287a293f0 100644
--- a/nova/virt/xenapi/vm_utils.py
+++ b/nova/virt/xenapi/vm_utils.py
@@ -699,8 +699,8 @@ class VMHelper(HelperBase):
try:
out, err = utils.execute('sudo', 'mount',
'-t', 'ext2,ext3',
- '"%s"' % dev_path,
- '"%s"' % tmpdir)
+ '%s' % dev_path,
+ '%s' % tmpdir)
except exception.ProcessExecutionError as e:
err = str(e)
if err: