Skip to content
Snippets Groups Projects
Commit 086afe85 authored by lantz's avatar lantz
Browse files

Merge pull request #434 from cdburkard/patches/cluster_x11

wrap the title string in quotes so that bash interprets it correctly
parents abcdf185 3660e6d0
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ def makeTerm( node, title='Node', term='xterm', display=None ):
title: base title
term: 'xterm' or 'gterm'
returns: two Popen objects, tunnel and terminal"""
title += ': ' + node.name
title = '"%s: %s"' % ( title, node.name )
if not node.inNamespace:
title += ' (root)'
cmds = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment