# File lib/compass/import-once/importer.rb, line 23
      def mtime(uri, options, *args)
        if uri =~ /^\(NOT IMPORTED\) (.*)$/
          File.mtime($1) if File.exist?($1)
        else
          super
        end
      end