# File lib/handlers/template.rb, line 14
      def list(name)
        template_set= get_templates.select{|t| t.name == name}[0]

        if template_set.nil?
          say "Template set called '#{name}' was not found."
        else
          out = [template_set.name+' : '+template_set.description]
          out += template_set.template.collect do |appliance| 
            "#{appliance.appliance_id}: #{appliance.name}"
          end
          say_array out
        end
      end