diff options
author | Luke Kanies <luke@madstop.com> | 2005-04-13 20:17:18 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-04-13 20:17:18 +0000 |
commit | 8788552d5ec25c937bf2b609550fd024c31b1bc8 (patch) | |
tree | 0e4067f1819b829669e92b1f8c1573aed5b58821 /lib/blink/function.rb | |
parent | c86a770236d5c4ed397991226e401709d21f92f6 (diff) | |
download | puppet-8788552d5ec25c937bf2b609550fd024c31b1bc8.tar.gz puppet-8788552d5ec25c937bf2b609550fd024c31b1bc8.tar.xz puppet-8788552d5ec25c937bf2b609550fd024c31b1bc8.zip |
fixing [] method in function.rb
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@120 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/blink/function.rb')
-rw-r--r-- | lib/blink/function.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/blink/function.rb b/lib/blink/function.rb index 66620c514..9e67b0071 100644 --- a/lib/blink/function.rb +++ b/lib/blink/function.rb @@ -10,7 +10,7 @@ module Blink @@functions = Hash.new(nil) #--------------------------------------------------------------- - def [](name) + def Function.[](name) return @@functions[name] end #--------------------------------------------------------------- |