diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-02-21 01:44:39 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-02-21 01:44:39 +0000 |
commit | e7441df24ad0314b2aaf0fbcfcc9895309a0ff19 (patch) | |
tree | 4396a6eefa21d5286e36aa20408fc2895f2e4c9f | |
parent | 167b019857ae385ae1e2a366b15ed49f84b0a3c6 (diff) | |
download | portage-e7441df24ad0314b2aaf0fbcfcc9895309a0ff19.tar.gz portage-e7441df24ad0314b2aaf0fbcfcc9895309a0ff19.tar.bz2 portage-e7441df24ad0314b2aaf0fbcfcc9895309a0ff19.zip |
Patch by Ed Catmur to add "gnome" to legal_terms in output.py.
svn path=/main/trunk/; revision=2756
-rw-r--r-- | pym/output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/output.py b/pym/output.py index e361e063d..f23bac263 100644 --- a/pym/output.py +++ b/pym/output.py @@ -95,7 +95,7 @@ def nc_len(mystr): def xtermTitle(mystr): if havecolor and dotitles and os.environ.has_key("TERM") and sys.stderr.isatty(): myt=os.environ["TERM"] - legal_terms = ["xterm","Eterm","aterm","rxvt","screen","kterm","rxvt-unicode"] + legal_terms = ["xterm","Eterm","aterm","rxvt","screen","kterm","rxvt-unicode","gnome"] for term in legal_terms: if myt.startswith(term): sys.stderr.write("\x1b]2;"+str(mystr)+"\x07") |