Commit 5d65c1c4 by James Cammarata

Merge branch 'Mbosco-patch-1' into devel

parents 6bd06210 1702c2fd
......@@ -220,9 +220,15 @@ class Connection(object):
if not os.path.exists(hf):
hfiles_not_found += 1
continue
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
......
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