From 8e8417ca467f694996dc4649feb1c8fbac3d3e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1ll=20Gu=C3=B0j=C3=B3n=20Sigur=C3=B0sson?= Date: Wed, 15 Dec 2010 15:22:26 +0000 Subject: [PATCH] Tab indent bug fixed --- check_hpacucli/trunk/check_hpacucli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_hpacucli/trunk/check_hpacucli.py b/check_hpacucli/trunk/check_hpacucli.py index f3a7977..04d3257 100644 --- a/check_hpacucli/trunk/check_hpacucli.py +++ b/check_hpacucli/trunk/check_hpacucli.py @@ -88,7 +88,7 @@ def runCommand(command): stdout, stderr = proc.communicate('through stdin to stdout') if proc.returncode > 0: print "Error %s: %s\n command was: '%s'" % (proc.returncode,stderr.strip(),command) - debug("results: %s" % (stdout.strip() ) + debug("results: %s" % (stdout.strip() ) ) if proc.returncode == 127: # File not found, lets print path path=getenv("PATH") print "Check if your path is correct %s" % (path)