Skip to content

Commit

Permalink
Merge pull request #975 from dannymidnight/stable
Browse files Browse the repository at this point in the history
Fix invalid method call for strip_trailing_seperator in configuration
  • Loading branch information
chriseppstein committed Dec 4, 2013
2 parents 587c2e5 + 6996e34 commit af1892b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compass/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def comment_for_#{name}
Data.send(:define_method, :"default_#{name}", &default) if default
Data.inherited_accessor(name)
if name.to_s =~ /dir|path/
strip_trailing_separator(name)
Data.strip_trailing_separator(name)
end
end

Expand Down

0 comments on commit af1892b

Please sign in to comment.