From 43b1727f6a26319f6d28b3a6ee689eb3ae8062f9 Mon Sep 17 00:00:00 2001 From: Matthew Williams Date: Tue, 8 May 2012 16:05:43 -0700 Subject: [PATCH] removed debug code --- lib/ansible/runner.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ansible/runner.py b/lib/ansible/runner.py index 31f835585d..b66535933f 100644 --- a/lib/ansible/runner.py +++ b/lib/ansible/runner.py @@ -433,7 +433,6 @@ class Runner(object): # apply templating to source argument inject = self.setup_cache.get(conn.host,{}) - print source source = utils.template(source, inject, self.setup_cache) # files are saved in dest dir, with a subdir for each host, then the filename @@ -513,7 +512,6 @@ class Runner(object): source = utils.template(source, inject, self.setup_cache) - print source (host, ok, data, err) = (None, None, None, None) if not self.is_playbook: @@ -545,7 +543,6 @@ class Runner(object): # template the source data locally source_data = codecs.open(utils.path_dwim(self.basedir, source), encoding="utf8").read() - print source_data resultant = '' try: resultant = utils.template(source_data, inject, self.setup_cache)