We must actually use println!() here

This commit is contained in:
Matthias Beyer 2016-08-06 11:50:50 +02:00
parent 71bce41e0f
commit f915a7fa26

View file

@ -50,7 +50,7 @@ fn tw_hook(rt: &Runtime) {
let stdin = stdin.lock(); // implements BufRead which is required for `Task::import()`
match Task::import(rt.store(), stdin) {
Ok((_, line, uuid)) => info!("{}\nTask {} stored in imag", line, uuid),
Ok((_, line, uuid)) => println!("{}\nTask {} stored in imag", line, uuid),
Err(e) => {
trace_error(&e);
exit(1);