From b0035a828de47cbd836a2a66992e2f074853ee3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Senart?= Date: Tue, 10 Sep 2013 21:49:25 +0100 Subject: [PATCH] Fix ReportText StatusCodes output --- lib/reporters.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/reporters.go b/lib/reporters.go index a7cd30d..c6c0c2d 100644 --- a/lib/reporters.go +++ b/lib/reporters.go @@ -31,7 +31,7 @@ func ReportText(results []Result, out io.Writer) error { } fmt.Fprintf(w, "\nStatus:\t") for code := range m.StatusCodes { - fmt.Fprintf(w, "%d\t", code) + fmt.Fprintf(w, "%s\t", code) } fmt.Fprintln(w, "\n\nError Set:")