aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Jin <joe.jin@oracle.com>2012-10-26 16:49:33 +0100
committerJoe Jin <joe.jin@oracle.com>2012-10-26 16:49:33 +0100
commit0f8bec6473523a93889aa080d4f4fb5460616478 (patch)
treed24ab89dd0d1e5486f307d77b270a5b9f98ead97
parentc0167fb3ca523717a7da3e4a312478c3d8a80a56 (diff)
downloadxen-0f8bec6473523a93889aa080d4f4fb5460616478.tar.gz
xen-0f8bec6473523a93889aa080d4f4fb5460616478.tar.bz2
xen-0f8bec6473523a93889aa080d4f4fb5460616478.zip
tools: xend: fix wrong condition check for xml file
In commit e8d40584, it intended to check xml file size and when empty will return, the condition should be "if os.path.getsize(xml_path) == 0" rather then "if not os.path.getsize(xml_path) == 0". Signed-off-by: Chuang Cao <chuang.cao@oracle.com> Signed-off-by: Joe Jin <joe.jin@oracle.com> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Committed-by: Ian Campbell <ian.campbell@citrix.com> xen-unstable changeset: 26088:dd64a1bdbe3a Backport-requested-by: Ian Campbell <Ian.Campbell@citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
-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)