Update error message

This commit is contained in:
Dheepak Krishnamurthy 2020-10-24 20:41:33 -06:00
parent 2110c336ca
commit 2bb68d2755

View file

@ -41,7 +41,7 @@ fn main() -> Result<(), Box<dyn Error>> {
match r { match r {
Ok(_) => std::process::exit(0), Ok(_) => std::process::exit(0),
Err(error) => { Err(error) => {
eprintln!("{}: {}", "[taskwarrior-tui error]", error); eprintln!("{}: {}. Please report as a github issue on https://github.com/kdheepak/taskwarrior-tui", "[taskwarrior-tui error]", error);
std::process::exit(1); std::process::exit(1);
} }
} }