summaryrefslogtreecommitdiff
path: root/lib/chef/runner.rb
diff options
context:
space:
mode:
authorAdam Jacob <adam@hjksolutions.com>2008-09-23 08:04:23 -0700
committerAdam Jacob <adam@hjksolutions.com>2008-09-23 08:04:23 -0700
commit4d40210e8e9b9b938a879e7005736ddc9b0b5e4f (patch)
treef559ba13d7c890a41b5cfcf9596d4ec8faab42a9 /lib/chef/runner.rb
parent11901764e1fade23c010121d2a14c944f7660c37 (diff)
downloadchef-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.rb4
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