Fix error message for Sass paths with invalid UTF-8

This commit is contained in:
Zoey 2021-08-19 13:46:19 -07:00
parent 5e1913c9de
commit bcf673fd7b

View file

@ -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
);
}
}