Skip to content

Commit

Permalink
Attempted fix for Windows path error.
Browse files Browse the repository at this point in the history
  • Loading branch information
James.Hester committed Oct 10, 2024
1 parent a55a49c commit 39a9f98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ddlm_dictionary_ng.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1341,11 +1341,11 @@ end
Convert a file: URI to a path.
"""
to_path(u::URI) = begin
if Sys.iswindows()
unescapeuri(u.path[2:end])
else
#if Sys.iswindows()
# unescapeuri(u.path[2:end])
#else
unescapeuri(u.path)
end
#end
end

"""
Expand Down

0 comments on commit 39a9f98

Please sign in to comment.