slightly friendlier

pull/6/head
dvkt 5 years ago
parent 40099b968f
commit 72ec92c861

@ -52,11 +52,10 @@ fn main() {
};
let mut ui = UI::new();
ui.open(&url).or_else(|e| {
eprintln!("\r\x1b[91m{}\x1b[0m", e);
if let Err(e) = ui.open(&url) {
ui.error(&e.to_string());
exit(1);
Err(e)
});
}
ui.run();
}

@ -150,7 +150,7 @@ impl UI {
}
// Display an error message to the user.
fn error(&self, e: &str) {
pub fn error(&self, e: &str) {
print!(
"{}{}{}{}{}",
"\x1b[91m",

Loading…
Cancel
Save