Skip to content

Commit

Permalink
"Merge pull request #435 from johnwheeler/master\n\nremoved from libs…
Browse files Browse the repository at this point in the history
…ass filter, as it does not appear as a named argume…"
  • Loading branch information
miracle2k committed Dec 19, 2015
2 parents 5e5ec68 + f17787f commit dab668a
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/webassets/filter/libsass.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ class LibSass(Filter):
LIBSASS_INCLUDES (includes)
an optional list of paths to find @imported SASS/CSS source files
LIBSASS_IMAGES (images)
an optional path to find images
See libsass documentation for full documentation about these configuration
options:
Expand All @@ -46,8 +43,7 @@ class LibSass(Filter):
name = 'libsass'
options = {
'style': 'LIBSASS_STYLE',
'includes': 'LIBSASS_INCLUDES',
'images': 'LIBSASS_IMAGES',
'includes': 'LIBSASS_INCLUDES'
}
max_debug_level = None

Expand All @@ -72,7 +68,6 @@ def input(self, _in, out, **kwargs):
self.sass.compile(
filename=source_path,
output_style=self.style,
include_paths=(self.includes if self.includes else []),
image_path=(self.images if self.images else '')
include_paths=(self.includes if self.includes else [])
)
)

0 comments on commit dab668a

Please sign in to comment.