Merge branch 'patch-1' of https://github.com/Mbosco/ansible into Mbosco-patch-1

This commit is contained in:
James Cammarata 2014-06-23 12:57:13 -05:00
commit 1702c2fd50

View file

@ -220,9 +220,15 @@ class Connection(object):
if not os.path.exists(hf):
hfiles_not_found += 1
continue
host_fh = open(hf)
data = host_fh.read()
host_fh.close()
try:
host_fh = open(hf)
except IOError, e:
hfiles_not_found += 1
continue
else:
data = host_fh.read()
host_fh.close()
for line in data.split("\n"):
if line is None or " " not in line:
continue