I am trying to compile sass with python-libsass package, am I doing something wrong? It seems that I am using the correct sass syntax but still getting wierd errors, it wants semicolons at the end of each line, very strange:
> pip install libsass
> Successfully installed libsass-0.13.3
...
>>> sass.compile(string='$a: 1\n$b: 2')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "c:\anaconda\lib\site-packages\sass.py", line 640, in compile
raise CompileError(v)
sass.CompileError: Error: Invalid CSS after "$b": expected 1 selector or at-rule, was ": 2"
on line 2 of stdin
>> $b: 2
^