format fixes to make fetch more usable

This commit is contained in:
Dave Hatton 2012-07-16 11:43:37 +01:00
parent b542dd8466
commit c3205595b3
2 changed files with 6 additions and 6 deletions

View file

@ -252,7 +252,7 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
def on_failed(self, host, results):
print "failed: [%s] => %s\n" % (host, utils.jsonify(results))
print "failed: [%s] => %s" % (host, utils.jsonify(results))
def on_ok(self, host, host_result):
@ -264,11 +264,11 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
def on_error(self, host, err):
print >>sys.stderr, "err: [%s] => %s\n" % (host, err)
print >>sys.stderr, "err: [%s] => %s" % (host, err)
def on_skipped(self, host):
print "skipping: [%s]\n" % host
print "skipping: [%s]" % host
def on_no_hosts(self):