From 6fd4710f7fc4fe7f714e940fb10b8e226dcd923d Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 21 May 2019 19:51:23 -0400 Subject: [PATCH] Remove bad replacement --- client-common/vm.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/client-common/vm.py b/client-common/vm.py index 25cfc0c8..2e76e318 100644 --- a/client-common/vm.py +++ b/client-common/vm.py @@ -52,9 +52,6 @@ def getInformationFromXML(zk_conn, uuid): domain_lastnode = zkhandler.readdata(zk_conn, '/domains/{}/lastnode'.format(uuid)) domain_failedreason = zkhandler.readdata(zk_conn, '/domains/{}/failedreason'.format(uuid)) - if domain_lastnode == '': - domain_lastnode = 'N/A' - parsed_xml = common.getDomainXML(zk_conn, uuid) domain_uuid, domain_name, domain_description, domain_memory, domain_vcpu, domain_vcputopo = common.getDomainMainDetails(parsed_xml)