diff --git a/lib/ansible/inventory/__init__.py b/lib/ansible/inventory/__init__.py index b426aa9e376..c7d6057ea7e 100644 --- a/lib/ansible/inventory/__init__.py +++ b/lib/ansible/inventory/__init__.py @@ -53,6 +53,7 @@ class Inventory(object): if type(host_list) in [ str, unicode ]: if host_list.find(",") != -1: host_list = host_list.split(",") + host_list = [ h for h in host_list if h and h.strip() ] if type(host_list) == list: all = Group('all')