Tab indent bug fixed

This commit is contained in:
Páll Guðjón Sigurðsson 2010-12-15 15:22:26 +00:00
parent 00a36443ae
commit 8e8417ca46
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ def runCommand(command):
stdout, stderr = proc.communicate('through stdin to stdout') stdout, stderr = proc.communicate('through stdin to stdout')
if proc.returncode > 0: if proc.returncode > 0:
print "Error %s: %s\n command was: '%s'" % (proc.returncode,stderr.strip(),command) 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 if proc.returncode == 127: # File not found, lets print path
path=getenv("PATH") path=getenv("PATH")
print "Check if your path is correct %s" % (path) print "Check if your path is correct %s" % (path)