From 74cda834abdc56867ede83c9ad8e25e8cf7955f9 Mon Sep 17 00:00:00 2001 From: Pall Sigurdsson Date: Tue, 17 Jul 2012 20:30:55 +0000 Subject: [PATCH] changed sssu subcommands from being singlequoted to doublequoted for windows compatibility --- check_eva/check_eva.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_eva/check_eva.py b/check_eva/check_eva.py index 0d87c26..148fb75 100644 --- a/check_eva/check_eva.py +++ b/check_eva/check_eva.py @@ -207,7 +207,7 @@ def run_sssu(system=None, command="ls system full"): commands.append(command) commandstring = "sssu " - for i in commands: commandstring = commandstring + "'%s' " % i + for i in commands: commandstring = commandstring + '"%s" ' % i global server_side_troubleshooting if server_side_troubleshooting == True: commandstring = 'cat "debug/%s"' % command