diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-09-23 08:04:23 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-09-23 08:04:23 -0700 |
commit | 4d40210e8e9b9b938a879e7005736ddc9b0b5e4f (patch) | |
tree | f559ba13d7c890a41b5cfcf9596d4ec8faab42a9 /lib/chef/runner.rb | |
parent | 11901764e1fade23c010121d2a14c944f7660c37 (diff) | |
download | chef-4d40210e8e9b9b938a879e7005736ddc9b0b5e4f.tar.gz |
No more 'e' in the raise, since we're catching any exception
Diffstat (limited to 'lib/chef/runner.rb')
-rw-r--r-- | lib/chef/runner.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/runner.rb b/lib/chef/runner.rb index 969f42b4e3..7df3290243 100644 --- a/lib/chef/runner.rb +++ b/lib/chef/runner.rb @@ -82,7 +82,7 @@ class Chef end rescue Chef::Log.error("#{resource} (#{resource.source_line}) had an error:") - raise e + raise end end @@ -93,4 +93,4 @@ class Chef true end end -end
\ No newline at end of file +end |