-
Notifications
You must be signed in to change notification settings - Fork 36
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
"BundleError: No module named f" on Windows only #57
Comments
I'm not sure what to do about this. The challenge is that a lot of arguments in pyramid_webassets can be a file path or an asset specification. Since the asset specification syntax separates packages from relative paths with a |
Okay. I think we can probably just fall back in that function and try to resolve the file as a path. Do you want to try to write the patch and test it? |
I observed this problem at one user. I do not have Windows, but if I have time I will try to reproduce it on VM |
Same problem here. Using pyramid . I had to change to windows susbystem for linux to make the project work. |
My traceback http://dumpz.org/1206696/
On this line https://github.com/sontek/pyramid_webassets/blob/master/pyramid_webassets/__init__.py#L108 pyramid_webassets try to split by ':' this path 'f:\itcase\sacrud\pyramid_sacrud\pyramid_sacrud\static\css_base.css' and set package as 'f'. Probably it's a bug.
The text was updated successfully, but these errors were encountered: