From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jim Fehlig Subject: Is Xend versioned? Date: Tue, 18 Dec 2007 12:08:11 -0700 Message-ID: <47681A9B.3020402@novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel List-Id: xen-devel@lists.xenproject.org When querying Xend for version this code is invoked in tools/python/xen/xend/XendNode.py def xen_version(self): info = self.xc.xeninfo() try: from xen import VERSION info = {'Xen': '%(xen_major)d.%(xen_minor)d' % info, 'Xend': VERSION} except (ImportError, AttributeError): info = {'Xen': '%(xen_major)d.%(xen_minor)d' % info, 'Xend': '3.0.3'} I cannot find a xen module from which to import VERSION, resulting in the hardcoded one. I would cook up a patch if I understood how, or even if, it should be versioned. Jim