Skip to content

Commit e9f07e9

Browse files
committed
More printing fixing. (In unused code.)
1 parent c8640c4 commit e9f07e9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

utils.rkt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@
3131
(define (format-blame b)
3232
(format (string-append "#<blame positive=~a\n"
3333
" negative=~a\n"
34-
" contract=~a\n"
35-
" value=~a\n"
34+
" contract=~s\n"
35+
" value=~s\n"
3636
" source=~a>\n")
3737
(blame-positive b) (blame-negative b)
38-
(contract-name (blame-contract b))
39-
(blame-value b) (blame-source b)))
38+
(blame-contract b) (blame-value b) (blame-source b)))
4039

4140
;; (listof (U path-string? submodule-path #f)) -> same
4241
(define (shorten-paths ps*)

0 commit comments

Comments
 (0)