From cd685eefb48bf16ff1e15205228a758daccb0dd6 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 10 Aug 2017 12:52:31 +0200 Subject: Disable debug output for example by default --- testing/tests/hello.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/tests/hello.rs') diff --git a/testing/tests/hello.rs b/testing/tests/hello.rs index 12ffde6..0d0c976 100644 --- a/testing/tests/hello.rs +++ b/testing/tests/hello.rs @@ -4,7 +4,7 @@ extern crate askama; use askama::Template; #[derive(Template)] // this will generate the code... -#[template(path = "hello.html", print = "all")] // using the template in this path, relative +#[template(path = "hello.html")] // using the template in this path, relative // to the templates dir in the crate root struct HelloTemplate<'a> { // the name of the struct can be anything name: &'a str, // the field name should match the variable name -- cgit