From ebe387f0f03715fad55df56f400fe319181365d9 Mon Sep 17 00:00:00 2001 From: Denis Knauf Date: Tue, 23 Dec 2014 20:35:56 +0100 Subject: [PATCH] console: finish => newline --- lib/progress-bar.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/progress-bar.rb b/lib/progress-bar.rb index 6efb70d..7e4d77a 100644 --- a/lib/progress-bar.rb +++ b/lib/progress-bar.rb @@ -82,6 +82,10 @@ class ProgressBar::Console < ProgressBar::Base STDERR.printf "\r\e[J%s\n", error change_text end + + def finish + STDERR.puts + end end class ProgressBar::KDialog < ProgressBar::Base