From: Zac Medico Date: Fri, 8 Aug 2008 00:43:06 +0000 (-0000) Subject: Shorten the scheduler status display in the xterm title by removing all X-Git-Tag: v2.2_rc7~37 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=febc42619eb21131e8b669130273e8a3e91cb8c3;p=portage.git Shorten the scheduler status display in the xterm title by removing all consecutive spaces. svn path=/main/trunk/; revision=11345 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index b72f964a4..35ac098ab 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -8741,7 +8741,7 @@ class JobStatusDisplay(object): f.add_literal_data(load_avg_str) self._update(color_output.getvalue()) - xtermTitle(plain_output.getvalue()) + xtermTitle(" ".join(plain_output.getvalue().split())) class Scheduler(PollScheduler):