diff options
| author | James Turnbull <james@lovedthanlost.net> | 2010-10-02 12:23:23 +1000 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2010-10-02 12:23:23 +1000 |
| commit | a6e2beaba1565a87bbd5266154883b72a700b3f3 (patch) | |
| tree | e07eb7b769d94c3d57d81860b1c24355d1c35cf4 /lib | |
| parent | 917c520f1abc0c72d7065531cffcef88259e32e0 (diff) | |
| download | puppet-a6e2beaba1565a87bbd5266154883b72a700b3f3.tar.gz puppet-a6e2beaba1565a87bbd5266154883b72a700b3f3.tar.xz puppet-a6e2beaba1565a87bbd5266154883b72a700b3f3.zip | |
Fixed #4919 - added parenths to fix error message:
/usr/lib/ruby/site_ruby/1.8/puppet/util/metric.rb:62: warning: parenthesize argument(s) for future version
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/puppet/util/metric.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/util/metric.rb b/lib/puppet/util/metric.rb index 00898472f..90a244836 100644 --- a/lib/puppet/util/metric.rb +++ b/lib/puppet/util/metric.rb @@ -59,7 +59,7 @@ class Puppet::Util::Metric if Puppet.features.rrd_legacy? && ! Puppet.features.rrd? puts @rrd.info else - puts RRD.info self.path + puts RRD.info(self.path) end end |
