start xterm with TERM=ansi to preserve title from bash.bashrc

fixes #128
This commit is contained in:
Bob Lantz
2013-04-09 20:10:55 -07:00
parent 33c7e46492
commit 0f6bf4ce84
+1 -1
View File
@@ -49,7 +49,7 @@ def makeTerm( node, title='Node', term='xterm', display=None ):
error( 'invalid terminal type: %s' % term )
return
display, tunnel = tunnelX11( node, display )
term = node.popen( cmds[ term ] + [ display ] )
term = node.popen( cmds[ term ] + [ display, '-e', 'env TERM=ansi bash'] )
return [ tunnel, term ] if tunnel else [ term ]
def cleanUpScreens():