diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-23 12:43:53 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-23 12:43:53 +0200 |
commit | 57a10a789e62be9f55ea1d28610074709015ee0f (patch) | |
tree | 3bf4a40c774d98bbf85f9b85a9ed4643aaee0ced /testing/tests/macro.rs | |
parent | 2d6785b71414cc70adfb24ee742e3defa5841bbb (diff) | |
download | askama-57a10a789e62be9f55ea1d28610074709015ee0f.tar.gz askama-57a10a789e62be9f55ea1d28610074709015ee0f.tar.bz2 askama-57a10a789e62be9f55ea1d28610074709015ee0f.zip |
Forgot to remove debugging cruft, again
Diffstat (limited to 'testing/tests/macro.rs')
-rw-r--r-- | testing/tests/macro.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tests/macro.rs b/testing/tests/macro.rs index 320ca2c..72f578e 100644 --- a/testing/tests/macro.rs +++ b/testing/tests/macro.rs @@ -4,7 +4,7 @@ extern crate askama; use askama::Template; #[derive(Template)] -#[template(path = "macro.html", print = "all")] +#[template(path = "macro.html")] struct MacroTemplate<'a> { s: &'a str, } |