1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

[Sass] [SCSS] Don't use #inspect for error messages.

This commit is contained in:
Nathan Weizenbaum 2009-12-26 18:15:53 -08:00
parent ab6433a61d
commit 65cf175604

View file

@ -467,7 +467,7 @@ module Sass
was = was[0...15] + "..." if was.size > 18 was = was[0...15] + "..." if was.size > 18
raise Sass::SyntaxError.new( raise Sass::SyntaxError.new(
"Invalid CSS after #{after.inspect}: expected #{expected}, was #{was.inspect}", "Invalid CSS after \"#{after}\": expected #{expected}, was \"#{was}\"",
:line => @line) :line => @line)
end end