"BundleError: No module named f" on Windows only
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.
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 : probably the thing to do is to fall through to trying the file path whenever the asset spec fails. Maybe that already happens and I'm just not catching an exception that's breaking it.
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.