From 5a4f39bfbfe67a96d061740f09ca29b7ae90a67a Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 28 Jul 2014 10:47:27 -0400 Subject: Make "No hosts matched" go to stderr. --- bin/ansible | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ansible b/bin/ansible index 1e2540fafb..b1d91cb733 100755 --- a/bin/ansible +++ b/bin/ansible @@ -94,7 +94,7 @@ class Cli(object): inventory_manager.subset(options.subset) hosts = inventory_manager.list_hosts(pattern) if len(hosts) == 0: - callbacks.display("No hosts matched") + callbacks.display("No hosts matched", stderr=True) sys.exit(0) if options.listhosts: @@ -141,7 +141,7 @@ class Cli(object): inventory_manager.subset(options.subset) hosts = inventory_manager.list_hosts(pattern) if len(hosts) == 0: - callbacks.display("No hosts matched") + callbacks.display("No hosts matched", stderr=True) sys.exit(0) if options.listhosts: -- cgit v1.2.1