Skip to content

Commit

Permalink
Don't pass --quiet flag to lessc
Browse files Browse the repository at this point in the history
  • Loading branch information
lpomfrey committed Jan 13, 2014
1 parent adb20d9 commit 6bc8873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion staticpreprocessor/contrib/processors/less.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class LessProcessor(CommandListProcessor):
output = 'less_styles.css'

def get_command(self, **kwargs):
return 'lessc --silent {compress_string} {yui_compress_string} '\
return 'lessc {compress_string} {yui_compress_string} '\
'{optimization_string} {input} {output}'.format(
compress_string='--compress' if self.compress else '',
yui_compress_string='--yui-compress'
Expand Down

0 comments on commit 6bc8873

Please sign in to comment.