summaryrefslogtreecommitdiff
path: root/lib/chef/knife/core/status_presenter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/knife/core/status_presenter.rb')
-rw-r--r--lib/chef/knife/core/status_presenter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/core/status_presenter.rb b/lib/chef/knife/core/status_presenter.rb
index 68c1acf4f1..df6c2fe942 100644
--- a/lib/chef/knife/core/status_presenter.rb
+++ b/lib/chef/knife/core/status_presenter.rb
@@ -148,7 +148,7 @@ class Chef
difference = difference % 3600
minutes = (difference / 60).to_i
seconds = (difference % 60)
- return [hours, minutes, seconds]
+ [hours, minutes, seconds]
end
end