Closed sjdemartini closed 10 years ago
It doesn't crash any more, but I have no idea if it works correctly — our Compass gradient stuff is very dense and not very well defined or tested :(
Ah okay. Well thanks for looking into it and fixing the crash!
I had the same problem which I traced back to this commit 028b73079c221f97f7ff1a9537a88279b8c0b098
There seems to be a return statement that disappeared on line extension/compass/gradients.py:25
Change
list(args[0])
to
return list(arg[0])
and it already works better
@simpoir whoops, fixed that, thanks! I should be making a point release today or tomorrow.
I'm gonna close this, but feel free to open new issues for further problems. Eventually I hope to make the Compass support a little more well-defined and well-tested.
The following fails to process properly. Looks like the Sass
List
isn't being created properly when the first argument is the position, maybe? (Note that this used to work; the file parses fine with pyscss version 1.1.3.)...