From e0ca761a25806bceede047a3ab3f1855d5f435cc Mon Sep 17 00:00:00 2001 From: Thibaud Guillaume-Gentil Date: Fri, 13 May 2011 22:05:58 +0200 Subject: [PATCH] Removed useless \n when saying 'Bye bye...' --- lib/guard/interactor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/guard/interactor.rb b/lib/guard/interactor.rb index cea6eb7..3b65598 100644 --- a/lib/guard/interactor.rb +++ b/lib/guard/interactor.rb @@ -9,7 +9,7 @@ module Guard end def stop - UI.info "Bye bye...\n", :reset => true + UI.info "Bye bye...", :reset => true ::Guard.listener.stop ::Guard.guards.each { |guard| ::Guard.supervised_task(guard, :stop) } abort