diff --git a/src/formats.rs b/src/formats.rs index b7d6bd5..4cadb84 100644 --- a/src/formats.rs +++ b/src/formats.rs @@ -242,7 +242,7 @@ impl Format for PowerShell { fn no_known_extension(&self, f: &mut W, path: &Path) -> io::Result<()> { smart_write( f, - writables![ + writablesln![ "Write-Output @'", Newline, "No known extension for ", @@ -256,7 +256,7 @@ impl Format for PowerShell { fn unreadable(&self, f: &mut W, path: &Path) -> io::Result<()> { smart_write( f, - writables!["Write-Output @'", Newline, "Failed to read ", path, Newline, "'@"], + writablesln!["Write-Output @'", Newline, "Failed to read ", path, Newline, "'@"], ) }