From ea8be4421d73a9ef056c05889d87062dfb5a69c8 Mon Sep 17 00:00:00 2001 From: René Kijewski Date: Thu, 6 Jan 2022 14:43:01 +0100 Subject: Remove ext argument in integrations --- askama_axum/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'askama_axum') diff --git a/askama_axum/src/lib.rs b/askama_axum/src/lib.rs index da3d699..090d1d2 100644 --- a/askama_axum/src/lib.rs +++ b/askama_axum/src/lib.rs @@ -6,7 +6,7 @@ pub use askama::*; pub use axum_core::response::{IntoResponse, Response}; use http::StatusCode; -pub fn into_response(t: &T, _ext: &str) -> Response { +pub fn into_response(t: &T) -> Response { match t.render() { Ok(body) => { let headers = [( -- cgit