module SassC::ImportHandler::FileSystemImporter

def exactly_one(paths)

def exactly_one(paths)
  return if paths.empty?
  return paths.first if paths.one?
  raise "It's not clear which file to import. Found:\n#{paths.map { |path| "  #{path}" }.join("\n")}"
end