From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1KRG4V-0004Yp-5E for garchives@archives.gentoo.org; Fri, 08 Aug 2008 00:43:11 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26298E0767; Fri, 8 Aug 2008 00:43:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EFA93E0767 for ; Fri, 8 Aug 2008 00:43:09 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 8ABAA66301 for ; Fri, 8 Aug 2008 00:43:09 +0000 (UTC) Received: from zmedico by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1KRG4S-0002kZ-Cw for gentoo-commits@lists.gentoo.org; Fri, 08 Aug 2008 00:43:08 +0000 To: gentoo-commits@lists.gentoo.org From: "Zac Medico (zmedico)" Subject: [gentoo-commits] portage r11345 - main/trunk/pym/_emerge X-VCS-Repository: portage X-VCS-Revision: 11345 X-VCS-Files: main/trunk/pym/_emerge/__init__.py X-VCS-Directories: main/trunk/pym/_emerge X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico Content-Type: text/plain; charset=UTF-8 Message-Id: Sender: Zac Medico Date: Fri, 08 Aug 2008 00:43:08 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 1cec8b2b-2e6d-4226-8eee-6a8c55ecab32 X-Archives-Hash: 5a08000044cceaebc2739be18ca8fef0 Author: zmedico Date: 2008-08-08 00:43:06 +0000 (Fri, 08 Aug 2008) New Revision: 11345 Modified: main/trunk/pym/_emerge/__init__.py Log: Shorten the scheduler status display in the xterm title by removing all consecutive spaces. Modified: main/trunk/pym/_emerge/__init__.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- main/trunk/pym/_emerge/__init__.py 2008-08-07 22:08:24 UTC (rev 11344= ) +++ main/trunk/pym/_emerge/__init__.py 2008-08-08 00:43:06 UTC (rev 11345= ) @@ -8741,7 +8741,7 @@ f.add_literal_data(load_avg_str) =20 self._update(color_output.getvalue()) - xtermTitle(plain_output.getvalue()) + xtermTitle(" ".join(plain_output.getvalue().split())) =20 class Scheduler(PollScheduler): =20