summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLuke Kanies <luke@puppetlabs.com>2010-04-09 15:06:23 -0700
committerLuke Kanies <luke@puppetlabs.com>2010-04-09 15:06:23 -0700
commitfff8d0465c1674f111b60c313fcdca6613262a85 (patch)
treeb26116cb95a356c5b8f3f4fe516fe728ef5749f5 /lib
parent7c253177fbebdeb81594779bfd5b63772de09fff (diff)
downloadpuppet-fff8d0465c1674f111b60c313fcdca6613262a85.tar.gz
puppet-fff8d0465c1674f111b60c313fcdca6613262a85.tar.xz
puppet-fff8d0465c1674f111b60c313fcdca6613262a85.zip
Fixing syntax warning
Signed-off-by: Luke Kanies <luke@puppetlabs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/indirector/resource/ral.rb2
1 files changed, 1 insertions, 1 deletions
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