summaryrefslogtreecommitdiff
path: root/lib/chef/run_status.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/run_status.rb')
-rw-r--r--lib/chef/run_status.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/chef/run_status.rb b/lib/chef/run_status.rb
index 58a6a43e3c..02e7a790f2 100644
--- a/lib/chef/run_status.rb
+++ b/lib/chef/run_status.rb
@@ -22,7 +22,6 @@
# are passed to any notification or exception handlers at the completion of a
# Chef run.
class Chef::RunStatus
-
attr_reader :events
attr_reader :run_context
@@ -113,7 +112,7 @@ class Chef::RunStatus
:updated_resources => updated_resources,
:exception => formatted_exception,
:backtrace => backtrace,
- :run_id => run_id}
+ :run_id => run_id }
end
# Returns a string of the format "ExceptionClass: message" or +nil+ if no
@@ -121,5 +120,4 @@ class Chef::RunStatus
def formatted_exception
@exception && "#{@exception.class.name}: #{@exception.message}"
end
-
end