Skip to content

Commit

Permalink
fix for blank line in header
Browse files Browse the repository at this point in the history
  • Loading branch information
kinverarity1 committed Nov 12, 2017
1 parent 4f9cfb5 commit 3349388
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lasio/reader.py
Expand Up @@ -442,7 +442,8 @@ def parse_header_section(sectdict, version, ignore_header_errors=False):
for i in range(len(sectdict["lines"])):
line = sectdict["lines"][i]
j = sectdict["line_nos"][i]
# if line.start
if not line:
continue
try:
values = read_line(line)
except:
Expand Down

0 comments on commit 3349388

Please sign in to comment.