lib/byebug/processors/command_processor.rb in byebug-6.0.1 vs lib/byebug/processors/command_processor.rb in byebug-6.0.2

- old
+ new

@@ -154,8 +154,10 @@ def run_cmd(input) command = command_list.match(input) return command.new(self, input).execute if command puts thread_safe_eval(input) + rescue => e + errmsg(e.message) end end end