Skip to content

Commit

Permalink
Fixed small bug in SASS media processor
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris Smus committed Apr 3, 2011
1 parent 08f7832 commit 2a1e06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydeengine/media_processors.py
Expand Up @@ -58,7 +58,7 @@ def process(resource):
raise ValueError("SASS Processor cannot be found at [%s]" % sass) raise ValueError("SASS Processor cannot be found at [%s]" % sass)
try: try:
check_call([sass, "-I", load_path, resource.source_file.path, check_call([sass, "-I", load_path, resource.source_file.path,
`out_file`]) out_file.path])
except CalledProcessError, e: except CalledProcessError, e:
print 'Syntax Error when calling SASS Processor:', e print 'Syntax Error when calling SASS Processor:', e
return None return None
Expand Down

0 comments on commit 2a1e06c

Please sign in to comment.