diff options
author | Marius Mauch <genone@gentoo.org> | 2008-05-13 22:50:48 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2008-05-13 22:50:48 +0000 |
commit | 67e5991a12b45bc38f18cf7c2bcdc4ad65842f64 (patch) | |
tree | 6b6b09a578ee6086dd31b7f4bf9e0ad90768f442 | |
parent | 6308c436f2760d47b63bf7710ed463da65654473 (diff) | |
download | portage-67e5991a12b45bc38f18cf7c2bcdc4ad65842f64.tar.gz portage-67e5991a12b45bc38f18cf7c2bcdc4ad65842f64.tar.bz2 portage-67e5991a12b45bc38f18cf7c2bcdc4ad65842f64.zip |
add xterm-color and interix to list of valid terminals
svn path=/main/trunk/; revision=10329
-rw-r--r-- | pym/portage/output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/output.py b/pym/portage/output.py index 0cc6fda2c..e9a1a559a 100644 --- a/pym/portage/output.py +++ b/pym/portage/output.py @@ -246,7 +246,7 @@ def xtermTitle(mystr, raw=False): if len(mystr) > max_len: mystr = mystr[:max_len] myt=os.environ["TERM"] - legal_terms = ["xterm","Eterm","aterm","rxvt","screen","kterm","rxvt-unicode","gnome"] + legal_terms = ["xterm","xterm-color","Eterm","aterm","rxvt","screen","kterm","rxvt-unicode","gnome","interix"] for term in legal_terms: if myt.startswith(term): if not raw: |