-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible error with fix_url
when path contains a space
#11
Comments
Thanks for the report and tracking down the origin. I have reproduced the error on Linux. The |
The patch will be simple, if you want to apply it manually, the line Path(u.path[2:end])
else
Path(u.path) should be Path(unescapeuri(u.path[2:end]))
else
Path(unescapeuri(u.path)) in file I will prepare the patch and put out a bugfix release. |
Hi, I was struggling with this issue. |
Fixed in v0.6.3 |
Thank you James, this fixes it! |
On Windows, users are reporting that CrystalInfoFramework won't precompile if their username contains a space. I think the error originates in
fix_url
converting the space character to%20
.For the user, this runs without error
But this throws ERROR: IOError: [...] no such file or directory (ENOENT)
The latter case arises because, I think:
The text was updated successfully, but these errors were encountered: