From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leonard Norrgard Subject: [PATCH 3/3] Widen key column in kvm_stat Date: Fri, 02 Mar 2007 18:55:00 +0200 Message-ID: <45E856E4.8090802@refactor.fi> References: <45E853A0.3080207@refactor.fi> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------070704010108040208030503" To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org Return-path: In-Reply-To: <45E853A0.3080207-g2GXA8XeJSExHbG02/KK1g@public.gmane.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kvm-devel-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org Errors-To: kvm-devel-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org List-Id: kvm.vger.kernel.org This is a multi-part message in MIME format. --------------070704010108040208030503 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Make the key column wider, so the keys are fully shown. Signed-off-by: Leonard Norrg=C3=A5rd --------------070704010108040208030503 Content-Type: text/x-diff; name="03_widen_kvm_stat_column.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="03_widen_kvm_stat_column.patch" === kvm_stat ================================================================== --- kvm_stat (revision 20893) +++ kvm_stat (local) @@ -39,9 +39,9 @@ for key in sorted(s.keys()): values = s[key] screen.addstr(row, 1, key) - screen.addstr(row, 12, '%10d' % (values[0],)) + screen.addstr(row, 14, '%10d' % (values[0],)) if values[1] is not None: - screen.addstr(row, 22, '%8d' % (values[1],)) + screen.addstr(row, 24, '%8d' % (values[1],)) row += 1 screen.refresh() --------------070704010108040208030503 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV --------------070704010108040208030503 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ kvm-devel mailing list kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/kvm-devel --------------070704010108040208030503--