class Sass::Importers::Filesystem

def remove_root(name)

otherwise returns the name unchanged
If a full uri is passed, this removes the root from it
def remove_root(name)
  if name.index(@root + "/") == 0
    name[(@root.length + 1)..-1]
  else
    name
  end
end