Remove debug print for environment

parent 1df56c07
...@@ -227,7 +227,6 @@ class Runner(object): ...@@ -227,7 +227,6 @@ class Runner(object):
if not self.environment: if not self.environment:
return "" return ""
enviro = utils.template(self.basedir, self.environment, inject) enviro = utils.template(self.basedir, self.environment, inject)
print "DEBUG: vars=%s" % enviro
if type(enviro) != dict: if type(enviro) != dict:
raise errors.AnsibleError("environment must be a dictionary, recieved %s" % enviro) raise errors.AnsibleError("environment must be a dictionary, recieved %s" % enviro)
result = "" result = ""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment