From bcf673fd7bad83e419a847a9185da36090c2acc7 Mon Sep 17 00:00:00 2001 From: Zoey Date: Thu, 19 Aug 2021 13:46:19 -0700 Subject: [PATCH] Fix error message for Sass paths with invalid UTF-8 --- src/builder.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/builder.rs b/src/builder.rs index d5f8a8a..516898d 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -207,7 +207,10 @@ impl<'a> SiteBuilder<'a> { ), } } else { - eprintln!("Sass stylesheet contains invalid UTF-8: {:?}", sheet_path); + eprintln!( + "Sass stylesheet path contains invalid UTF-8: {:?}", + sheet_path + ); } }