Skip to content

Commit

Permalink
parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
louisponet committed Nov 22, 2018
1 parent eb06159 commit 3c31366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qe/fileio.jl
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function read_qe_output(filename::String, T=Float64)
out[key] = T[]
line = readline(f)
while !isempty(line)
push!(out[key], parse(Float64, split(line)[6]))
push!(out[key], parse.(Float64, split(line)[6]))
line = readline(f)
end
elseif occursin("estimated scf accuracy", line)
Expand Down

0 comments on commit 3c31366

Please sign in to comment.