summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Wolfe <jes5199@gmail.com>2010-06-09 17:45:38 -0700
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit28702a4128b2057df959f1e190a7fb24ee51db47 (patch)
treee1fdf2285c2d314a0ff264e7da266bdfc0000600 /lib
parent19c70b501a4e041408814bb2810984f5835c1a47 (diff)
downloadpuppet-28702a4128b2057df959f1e190a7fb24ee51db47.tar.gz
puppet-28702a4128b2057df959f1e190a7fb24ee51db47.tar.xz
puppet-28702a4128b2057df959f1e190a7fb24ee51db47.zip
variable name error in refactor
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/provider/file/posix.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/provider/file/posix.rb b/lib/puppet/provider/file/posix.rb
index 131fd547e..6d6e2312b 100644
--- a/lib/puppet/provider/file/posix.rb
+++ b/lib/puppet/provider/file/posix.rb
@@ -96,7 +96,7 @@ Puppet::Type.type(:file).provide :posix do
break if uid = validuser?(user)
end
- raise Puppet::Error, "Could not find user(s) %s" % @should.join(",") unless uid
+ raise Puppet::Error, "Could not find user(s) %s" % should.join(",") unless uid
begin
File.send(method, uid, nil, path)