diff options
author | Micah Anderson <micah@riseup.net> | 2013-05-26 16:19:56 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-05-26 16:19:56 -0400 |
commit | 966f3b349a60b3997e58af1095bbd96671952fac (patch) | |
tree | 3c1dcdb0cd353427eb066f6926610445700a2a66 /lib/puppet/parser/functions/is_numeric.rb | |
parent | 66e0fa8f1bc5062e9d753598ad17602c378a2994 (diff) | |
parent | 9c8c8275abd76878d38a0f6f3af52dc468656283 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'lib/puppet/parser/functions/is_numeric.rb')
-rw-r--r-- | lib/puppet/parser/functions/is_numeric.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/is_numeric.rb b/lib/puppet/parser/functions/is_numeric.rb index ce13ece..abf0321 100644 --- a/lib/puppet/parser/functions/is_numeric.rb +++ b/lib/puppet/parser/functions/is_numeric.rb @@ -15,7 +15,7 @@ Returns true if the variable passed to this function is a number. value = arguments[0] - if value == value.to_f.to_s or value == value.to_i.to_s then + if value == value.to_f.to_s or value == value.to_i.to_s or value.is_a? Numeric then return true else return false |