aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python/xen/xend/XendStateStore.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/python/xen/xend/XendStateStore.py')
-rw-r--r--tools/python/xen/xend/XendStateStore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/xen/xend/XendStateStore.py b/tools/python/xen/xend/XendStateStore.py
index 17a29f180e..a66181d1d4 100644
--- a/tools/python/xen/xend/XendStateStore.py
+++ b/tools/python/xen/xend/XendStateStore.py
@@ -101,7 +101,7 @@ class XendStateStore:
if not os.path.exists(xml_path):
return {}
- if not os.path.getsize(xml_path) == 0:
+ if os.path.getsize(xml_path) == 0:
return {}
dom = minidom.parse(xml_path)