From fff8d0465c1674f111b60c313fcdca6613262a85 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Fri, 9 Apr 2010 15:06:23 -0700 Subject: Fixing syntax warning Signed-off-by: Luke Kanies --- lib/puppet/indirector/resource/ral.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/puppet/indirector/resource/ral.rb b/lib/puppet/indirector/resource/ral.rb index f2c3f847d..56fc62844 100644 --- a/lib/puppet/indirector/resource/ral.rb +++ b/lib/puppet/indirector/resource/ral.rb @@ -43,6 +43,6 @@ class Puppet::Resource::Ral < Puppet::Indirector::Code end def type( request ) - Puppet::Type.type(type_name(request)) or raise Puppet::Error "Could not find type #{type}" + Puppet::Type.type(type_name(request)) or raise Puppet::Error, "Could not find type #{type}" end end -- cgit