From f9c81eb77074378b96b0d9b0282f5044ade991f5 Mon Sep 17 00:00:00 2001 From: Fabian Aguilar Gomez Date: Wed, 17 Jan 2024 13:28:52 -0600 Subject: [PATCH] Update validate-html --- script/validate-html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/validate-html b/script/validate-html index 43d8fca894..8f51642ea5 100755 --- a/script/validate-html +++ b/script/validate-html @@ -20,7 +20,7 @@ def validate(file) return puts "Valid!" if results.errors.empty? - results.errors.each { |err| puts err.to_s } + results.errors.each { |err| puts err } exit 1 end