From mboxrd@z Thu Jan 1 00:00:00 1970 From: Laura Ramirez Subject: xm list -l displays duplicate information Date: Thu, 13 Oct 2005 14:21:32 -0700 Message-ID: <434ECFDC.9090500@hp.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------070004030004060500050001" 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@lists.xensource.com List-Id: xen-devel@lists.xenproject.org This is a multi-part message in MIME format. --------------070004030004060500050001 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hello, Yesterday, I updated my xen to changeset 7352:f3aa156fda6a. I noticed that the "xm list -l" was printing the domain information more than once. Since I had 3 domains, it was displaying the info 3 times. There seems to have been a typo with changeset 7273:32f9300618d6. Attached is a patch that fixes the typo, just in case it hasn't been fixed already. Laura Ramirez --------------070004030004060500050001 Content-Type: text/x-patch; name="xm_list.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="xm_list.patch" --- a/tools/python/xen/xm/main.py 2005-10-12 07:00:27.000000000 -0700 +++ b/tools/python/xen/xm/main.py 2005-10-13 13:54:06.261160568 -0700 @@ -233,7 +233,7 @@ if use_long: for dom in doms: - PrettyPrint.prettyprint(doms) + PrettyPrint.prettyprint(dom) else: domsinfo = map(parse_doms_info, doms) --------------070004030004060500050001 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --------------070004030004060500050001--