Commit 8d7f526d by Michael DeHaan

importing/not-importing methods should be colorized

parent d3e8e8ff
......@@ -378,11 +378,13 @@ class PlaybookCallbacks(object):
def on_import_for_host(self, host, imported_file):
print "%s: importing %s" % (host, imported_file)
msg = "%s: importing %s" % (host, imported_file)
print stringc(msg, 'blue')
def on_not_import_for_host(self, host, missing_file):
print "%s: not importing file: %s" % (host, missing_file)
msg = "%s: not importing file: %s" % (host, missing_file)
print stringc(msg, 'blue')
def on_play_start(self, pattern):
......
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