Skip to content

Commit

Permalink
Revert "Change default from scss to sass syntax"
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed May 21, 2016
1 parent c1c14fd commit ffb1ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ namespace Sass {
}
for(size_t i=0; i<extension.size();++i)
extension[i] = tolower(extension[i]);
if (extension != ".scss" && contents != 0) {
if (extension == ".sass" && contents != 0) {
char * converted = sass2scss(contents, SASS2SCSS_PRETTIFY_1 | SASS2SCSS_KEEP_COMMENT);
free(contents); // free the indented contents
return converted; // should be freed by caller
Expand Down

0 comments on commit ffb1ff5

Please # to comment.