From b4af2380f45a68830e47c8995b10474f512e67a4 Mon Sep 17 00:00:00 2001 From: Markus Roberts Date: Sat, 26 Jun 2010 10:04:09 -0700 Subject: Fix for #3985 typo causing warning There was a comma missing from a raise, which caused a warning message on each run. --- lib/puppet/feature/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/puppet') 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"]) -- cgit