We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f399fe1 commit bdeddf3Copy full SHA for bdeddf3
deps/build.jl
@@ -15,7 +15,7 @@ include(inpname)
15
const disp = [false]
16
17
const fname = "html.dat"
18
-const datapath = joinpath(Pkg.dir(), "HTML_Entities", "data")
+const datapath = joinpath(pkg_dir("HTML_Entities"), "data")
19
20
const empty_str = ""
21
src/HTML_Entities.jl
@@ -30,7 +30,7 @@ end
30
31
function __init__()
32
global default =
33
- HTML_Table(StrTables.load(joinpath(Pkg.dir("HTML_Entities"), "data", "html.dat"))...)
+ HTML_Table(StrTables.load(joinpath(pkg_dir("HTML_Entities"), "data", "html.dat"))...)
34
nothing
35
end
36
end # module HTML_Entities
0 commit comments