Commit f7f84f72 by Timothée Peignier

Merge pull request #410 from bardo/master

Make the SASS compiler compatible with libsass-python
parents 4231358d 495c2f84
...@@ -13,7 +13,7 @@ class SASSCompiler(SubProcessCompiler): ...@@ -13,7 +13,7 @@ class SASSCompiler(SubProcessCompiler):
return filename.endswith(('.scss', '.sass')) return filename.endswith(('.scss', '.sass'))
def compile_file(self, infile, outfile, outdated=False, force=False): def compile_file(self, infile, outfile, outdated=False, force=False):
command = "%s %s %s:%s" % ( command = "%s %s %s %s" % (
settings.PIPELINE_SASS_BINARY, settings.PIPELINE_SASS_BINARY,
settings.PIPELINE_SASS_ARGUMENTS, settings.PIPELINE_SASS_ARGUMENTS,
infile, infile,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment