projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c037c0
)
use escaping code that works for mrxvt too; thanks to nelchael for the patch; bug...
author
Simon Stelling
<blubb@gentoo.org>
Tue, 2 May 2006 13:08:53 +0000
(13:08 -0000)
committer
Simon Stelling
<blubb@gentoo.org>
Tue, 2 May 2006 13:08:53 +0000
(13:08 -0000)
svn path=/main/trunk/; revision=3306
pym/output.py
patch
|
blob
|
history
diff --git
a/pym/output.py
b/pym/output.py
index 5d5247bed4ecf293fa00a7066d75a962aec78911..fe15ea4718dfb0028d29ea7806e51fee73617719 100644
(file)
--- a/
pym/output.py
+++ b/
pym/output.py
@@
-173,7
+173,7
@@
def xtermTitle(mystr):
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")
+ sys.stderr.write("\x1b]
0
;"+str(mystr)+"\x07")
sys.stderr.flush()
break