From 388b9e45c0c0e6b3d482d91341be857eccea28a8 Mon Sep 17 00:00:00 2001 From: Viktor Fonic Date: Wed, 7 Aug 2019 11:48:12 +0800 Subject: [PATCH] Fix error message formatting There were words glued together with no space between. --- lib/guard/rspec/rspec_process.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/guard/rspec/rspec_process.rb b/lib/guard/rspec/rspec_process.rb index d6772c45..0b399439 100644 --- a/lib/guard/rspec/rspec_process.rb +++ b/lib/guard/rspec/rspec_process.rb @@ -57,9 +57,9 @@ def _read_results Results.new(formatter_tmp_file) rescue Errno::ENOENT msg = "Guard::RSpec cannot open results file: %s. This is likely a bug"\ - "so please report this at"\ + " so please report this at"\ " http://github.com/guard/guard-rspec/issues/new along with as much"\ - "information as possible to reproduce this issue." + " information as possible to reproduce this issue." Compat::UI.error(format(msg, formatter_tmp_file.inspect)) raise ensure