summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2010-06-26 10:04:09 -0700
committerMarkus Roberts <Markus@reality.com>2010-06-26 10:04:09 -0700
commitb4af2380f45a68830e47c8995b10474f512e67a4 (patch)
tree8e9fed365e6639ab5e40e20535eec9a941072806 /lib
parent9169ef002fd4dc8fb550c1d00aac72fd3bf1ce6c (diff)
downloadpuppet-b4af2380f45a68830e47c8995b10474f512e67a4.tar.gz
puppet-b4af2380f45a68830e47c8995b10474f512e67a4.tar.xz
puppet-b4af2380f45a68830e47c8995b10474f512e67a4.zip
Fix for #3985 typo causing warning
There was a comma missing from a raise, which caused a warning message on each run.
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/feature/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/feature/base.rb b/lib/puppet/feature/base.rb
index 0ca408ce4..2bdff3fcb 100644
--- a/lib/puppet/feature/base.rb
+++ b/lib/puppet/feature/base.rb
@@ -44,7 +44,7 @@ end
# We can use Win32 functions
Puppet.features.add(:win32, :libs => ["sys/admin", "win32/process", "win32/dir"])
-raise Puppet::Error "Cannot determine basic system flavour" unless Puppet.features.posix? or Puppet.features.win32?
+raise Puppet::Error,"Cannot determine basic system flavour" unless Puppet.features.posix? or Puppet.features.win32?
# We have CouchDB
Puppet.features.add(:couchdb, :libs => ["couchrest"])