Hi, if I try to import a file: ``` css @import 'scss_template'; ``` and I have a file called `scss_template.css.scss.erb` it does not pre-process through erb. This change seems to fix it for me: ``` ruby class Sass::Rails::Importer def sass_file? filename filename = filename.to_s SASS_EXTENSIONS.keys.any?{|ext| filename.match /#{ext}$/} end end ``` Is this a bug or am I doing something else wrong?