Skip to content

Commit

Permalink
Merge pull request #95 from JuliaActuary/CSVfix
Browse files Browse the repository at this point in the history
Fix parsing of CSVs change in v0.7.8 of CSV
  • Loading branch information
alecloudenback authored Mar 2, 2021
2 parents b930e64 + 45694b3 commit dc00dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CSV.jl
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ end

function last_values_line(lines,startline)
for i in startline:lastindex(lines)
if ismissing(lines[i][1])
if ismissing(lines[i][1]) | startswith(lines[i][1], "Table")
return i - 1
end
end
Expand Down

2 comments on commit dc00dfa

@alecloudenback
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: "Tag with name v2.0.0 already exists and points to a different commit"

Please sign in to comment.