Skip to content

Commit

Permalink
Avoid wrong error due to misused map object in At_Rule
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Jan 18, 2016
1 parent f55d187 commit 77fa585
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 77fa585

Please sign in to comment.