From 773849d421f8e2937f45153fa32399b33414414c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Fri, 30 Jan 2015 15:55:37 +0100 Subject: [PATCH] Only write actual errors to stderr --- bin/ansible-pull | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ansible-pull b/bin/ansible-pull index 2d913243156..67b969fdae6 100755 --- a/bin/ansible-pull +++ b/bin/ansible-pull @@ -151,7 +151,7 @@ def main(args): return 1 now = datetime.datetime.now() - print >>sys.stderr, now.strftime("Starting ansible-pull at %F %T") + print now.strftime("Starting ansible-pull at %F %T") # Attempt to use the inventory passed in as an argument # It might not yet have been downloaded so use localhost if note @@ -194,7 +194,7 @@ def main(args): if rc != 0: if options.force: - print "Unable to update repository. Continuing with (forced) run of playbook." + print >>sys.stderr, "Unable to update repository. Continuing with (forced) run of playbook." else: return rc elif options.ifchanged and '"changed": true' not in out: