# File referrercop.rb, line 530
  def self.load_blacklist(filename = nil)
    if filename == nil
      @options.blacklist = ReferrerCopConfig::BLACKLIST_FILE
    end

    begin
      return load_list(@options.blacklist, :blacklist)
    rescue => e
      abort e
    end
  end