Commit a435ca77 by andreas.pelme

Fixed issue 18, thanks pigletto!


git-svn-id: https://django-compress.googlecode.com/svn/trunk@74 98d35234-f74b-0410-9e22-51d878bdf110
parent 513bd9fb
......@@ -15,7 +15,8 @@ class CSSTidyFilter(FilterBase):
def filter_css(self, css):
tmp_file = tempfile.NamedTemporaryFile(mode='w+b')
tmp_file.write(css)
tmp_file.flush()
output_file = tempfile.NamedTemporaryFile(mode='w+b')
command = '%s %s %s %s' % (BINARY, tmp_file.name, ARGUMENTS, output_file.name)
......
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