Skip to content

Commit aad9cd2

Browse files
committed
Do not mix string interpolation and string formats (unless you have to)
1 parent 11f43c6 commit aad9cd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ruby-debug-ide/command.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def debug_eval(str, b = get_binding)
115115
str = str.to_s
116116
to_inspect = Command.unescape_incoming(str)
117117
max_time = Debugger.evaluation_timeout
118-
@printer.print_debug("Evaluating #{str} with timeout after %i sec", max_time)
118+
@printer.print_debug("Evaluating %s with timeout after %i sec", str, max_time)
119119
timeout(max_time) do
120120
eval(to_inspect, b)
121121
end

0 commit comments

Comments
 (0)