Merge pull request #9805 from mscherer/fix_9395
Strip the line to filter lines composed of only whitespacespull/4420/head
commit
d1e27fe819
|
@ -230,6 +230,7 @@ class Connection(object):
|
|||
host_fh.close()
|
||||
|
||||
for line in data.split("\n"):
|
||||
line = line.strip()
|
||||
if line is None or " " not in line:
|
||||
continue
|
||||
tokens = line.split()
|
||||
|
|
Loading…
Reference in New Issue