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

[Sass] Fix my exception syntax.

This commit is contained in:
Nathan Weizenbaum 2009-05-19 09:32:24 -07:00
parent e59cc7090c
commit 535996aaea

View file

@ -68,7 +68,7 @@ module Sass
return unless f.readline("\n").strip == sha return unless f.readline("\n").strip == sha
return Marshal.load(f.read) return Marshal.load(f.read)
end end
rescue TypeError => e, ArgumentError => e rescue TypeError, ArgumentError => e
warn "Warning. Error encountered while reading cache #{compiled_filename}: #{e}" warn "Warning. Error encountered while reading cache #{compiled_filename}: #{e}"
end end