Skip to content

Commit

Permalink
Merge pull request #1881 from mgreter/bugfix/issue_1839
Browse files Browse the repository at this point in the history
Avoid wrong error due to misused map object in At_Rule
  • Loading branch information
mgreter committed Jan 19, 2016
2 parents f55d187 + 77fa585 commit f1155e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ namespace Sass {
}
if (v) {
append_mandatory_space();
v->perform(this);
// ruby sass bug? should use options?
append_token(v->to_string(/* opt */), v);
}
if (!b) {
append_delimiter();
Expand Down

0 comments on commit f1155e4

Please sign in to comment.