Skip to content
Snippets Groups Projects
Commit 3660e6d0 authored by cody burkard's avatar cody burkard
Browse files

wrap the title string in quotes so that bash interprets it correctly

parent 820c3be7
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