aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 9f01fd6..e5bab05 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -138,7 +138,7 @@ fn main() {
let line = line.unwrap();
// Write the message to STDOUT so that it can be properly read by Mutt
- write!(io::stdout(), "{}\n", line).unwrap();
+ println!("{}", line);
if line.starts_with("From: ") {
match write_alias(line) {