Skip to content

Commit

Permalink
Merge pull request #53 from JuliaPy/read_csv
Browse files Browse the repository at this point in the history
Fix read_csv deprecation.
  • Loading branch information
malmaud authored Mar 11, 2019
2 parents a7e41e7 + e4b7a2b commit 377e29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pandas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ for m in [:read_pickle, :read_csv, :read_html, :read_json, :read_excel, :read_ta
:read_sql_query]
@eval begin
function $m(args...; kwargs...)
method = pandas_raw[$(string(m))]
method = pandas_raw.$(string(m))
result = pycall(method, PyObject, args...; kwargs...)
pandas_wrap(result)
end
Expand Down

0 comments on commit 377e29b

Please sign in to comment.