Leave console output on a newline.

This commit is contained in:
Nathan Vegdahl 2016-07-10 17:47:28 -07:00
parent c466e46138
commit e4f9a54e48

View File

@ -209,6 +209,9 @@ impl Renderer {
// Write rendered image to disk
let _ = image.write_png(Path::new(&self.output_file));
// End output with a new line
println!("");
}
}