Skip to content

Commit 4c368d8

Browse files
authored
fix repr
1 parent c317091 commit 4c368d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function execute_command(state::DebuggerState, ::Union{Val{:f}, Val{:fr}}, cmd)
9292
else
9393
new_level = tryparse(Int, subcmds[2])
9494
if new_level == nothing
95-
printstyled(stderr, "Failed to parse $(subcmds[2]) as an integer\n"; color=:red)
95+
printstyled(stderr, "Failed to parse $(repr(subcmds[2])) as an integer\n"; color=:red)
9696
return false
9797
end
9898
end

0 commit comments

Comments
 (0)