From f35b874da5ace83c8e86ad913820c7447775fd38 Mon Sep 17 00:00:00 2001 From: Joe Jin Date: Tue, 13 Nov 2012 18:11:09 +0000 Subject: 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 Signed-off-by: Joe Jin Reviewed-by: Konrad Rzeszutek Wilk Committed-by: Ian Campbell xen-unstable changeset: 26088:dd64a1bdbe3a Backport-requested-by: Ian Campbell Committed-by: Ian Jackson xen-4.2-testing changeset: 25905:82b61b99d15d Backport-requested-by: Ian Jackson Committed-by: Ian Jackson --- tools/python/xen/xend/XendStateStore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') 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) -- cgit v1.2.3