summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/ansible4
1 files 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: