Skip to content

Commit

Permalink
fix issue 74
Browse files Browse the repository at this point in the history
  • Loading branch information
goncaloe committed Feb 22, 2011
1 parent 64580bf commit bf14084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sass/renderers/SassNestedRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected function getIndent($node) {
* @return string the rendered directive
*/
public function renderDirective($node, $properties) {
$directive = $this->getIndent($node) . $node->directive . $this->between() . $this->renderProperties($properties);
$directive = $this->getIndent($node) . $node->directive . $this->between() . $this->renderProperties($node, $properties);
return preg_replace('/(.*})\n$/', '\1', $directive) . $this->end();
}

Expand Down

0 comments on commit bf14084

Please sign in to comment.