Skip to content

Commit

Permalink
Merge pull request #8 from JuliaString/spj/update
Browse files Browse the repository at this point in the history
Handle removal of Base.Pkg
  • Loading branch information
ScottPJones committed Feb 14, 2018
2 parents f399fe1 + bdeddf3 commit 25fc837
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include(inpname)
const disp = [false]

const fname = "html.dat"
const datapath = joinpath(Pkg.dir(), "HTML_Entities", "data")
const datapath = joinpath(pkg_dir("HTML_Entities"), "data")

const empty_str = ""

Expand Down
2 changes: 1 addition & 1 deletion src/HTML_Entities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ end

function __init__()
global default =
HTML_Table(StrTables.load(joinpath(Pkg.dir("HTML_Entities"), "data", "html.dat"))...)
HTML_Table(StrTables.load(joinpath(pkg_dir("HTML_Entities"), "data", "html.dat"))...)
nothing
end
end # module HTML_Entities

0 comments on commit 25fc837

Please sign in to comment.