accidently removed an Error string

This commit is contained in:
pedrocarlo 2025-03-30 03:12:36 -03:00
parent d1ded8e069
commit a612ad193c

View file

@ -512,7 +512,7 @@ impl<'a> Limbo<'a> {
}
Command::OutputMode(args) => {
if let Err(e) = self.set_mode(args.mode) {
let _ = self.write_fmt(format_args!("{}", e));
let _ = self.write_fmt(format_args!("Error: {}", e));
}
}
Command::SetOutput(args) => {