Convert single quote to double quote.
Signed-off-by: Yuto KAWAMURA(kawamuray) <[email protected]>
---
lib/hypervisor/hv_lxc.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/hypervisor/hv_lxc.py b/lib/hypervisor/hv_lxc.py
index 44e1687..21b947f 100644
--- a/lib/hypervisor/hv_lxc.py
+++ b/lib/hypervisor/hv_lxc.py
@@ -253,11 +253,11 @@ class LXCHypervisor(hv_base.BaseHypervisor):
# Memory
# Conditionally enable, memory resource controller might be disabled
cgroup = self._GetCgroupMountPoint()
- if os.path.exists(utils.PathJoin(cgroup, 'memory.limit_in_bytes')):
+ if os.path.exists(utils.PathJoin(cgroup, "memory.limit_in_bytes")):
out.append("lxc.cgroup.memory.limit_in_bytes = %dM" %
instance.beparams[constants.BE_MAXMEM])
- if os.path.exists(utils.PathJoin(cgroup, 'memory.memsw.limit_in_bytes')):
+ if os.path.exists(utils.PathJoin(cgroup, "memory.memsw.limit_in_bytes")):
out.append("lxc.cgroup.memory.memsw.limit_in_bytes = %dM" %
instance.beparams[constants.BE_MAXMEM])
--
1.8.5.5