diff options
author | Luke Kanies <luke@madstop.com> | 2005-04-25 18:14:33 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-04-25 18:14:33 +0000 |
commit | 49da910cf808a7f257ee91b2edb3b1d17ba9555c (patch) | |
tree | 4c1e6319bae1d30ee432e2dcbdf9e0f6734a175f | |
parent | 7689d19fdc975493513a586e3af69f243e5248a1 (diff) | |
download | puppet-49da910cf808a7f257ee91b2edb3b1d17ba9555c.tar.gz puppet-49da910cf808a7f257ee91b2edb3b1d17ba9555c.tar.xz puppet-49da910cf808a7f257ee91b2edb3b1d17ba9555c.zip |
we now have nested scopes, and we've got the beginnings of components, although many tests are currently failing
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@225 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r-- | lib/blink/type.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/blink/type.rb b/lib/blink/type.rb index 2357b4495..d2ba9e838 100644 --- a/lib/blink/type.rb +++ b/lib/blink/type.rb @@ -305,7 +305,7 @@ class Blink::Type < Blink::Element elsif self.class.validparameter(mname) @parameters[mname] = value else - raise "Invalid parameter %s" % mname + raise "Invalid parameter %s" % [mname] end end #--------------------------------------------------------------- |