aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/input.rs
diff options
context:
space:
mode:
authorLibravatar Bardi Harborow <bardi@bardiharborow.com>2019-07-12 04:43:41 +1000
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2019-07-11 21:49:56 +0200
commit5a4ac0fe462faf2a3ba3b3f4334863cdb4bbf45a (patch)
tree1751b688ca625f5933df76b47747a685510f3909 /askama_derive/src/input.rs
parent4bd29679c022a56b9fa8790d9095cdf8b0ee19b8 (diff)
downloadaskama-5a4ac0fe462faf2a3ba3b3f4334863cdb4bbf45a.tar.gz
askama-5a4ac0fe462faf2a3ba3b3f4334863cdb4bbf45a.tar.bz2
askama-5a4ac0fe462faf2a3ba3b3f4334863cdb4bbf45a.zip
Implement selected clippy recommendations.
Diffstat (limited to 'askama_derive/src/input.rs')
-rw-r--r--askama_derive/src/input.rs11
1 files changed, 4 insertions, 7 deletions
diff --git a/askama_derive/src/input.rs b/askama_derive/src/input.rs
index 0cc852c..0bf6093 100644
--- a/askama_derive/src/input.rs
+++ b/askama_derive/src/input.rs
@@ -4,7 +4,6 @@ use quote::ToTokens;
use askama_shared::{Config, Syntax};
-use std::io::{self, Write};
use std::path::PathBuf;
use syn;
@@ -146,12 +145,10 @@ impl<'a> TemplateInput<'a> {
};
if parent.is_some() {
- io::stderr()
- .write_fmt(format_args!(
- " --> in struct {}\n = use of deprecated field '_parent'\n",
- ast.ident
- ))
- .unwrap();
+ eprint!(
+ " --> in struct {}\n = use of deprecated field '_parent'\n",
+ ast.ident
+ );
}
// Validate syntax