about summary refs log tree commit diff
path: root/src/errors.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2018-05-22T17·47+0200
committerVincent Ambo <github@tazj.in>2018-05-22T18·44+0200
commitdbc082b3ee841d23aefc78db770e4b96655fb9c6 (patch)
treec2985aa3d25e95eba80fda842235e60d8838a5bd /src/errors.rs
parent4747bacfe9502bfd1aca14ffe0c4e9b5b3b86753 (diff)
chore: Remove Tera usage in all modules
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/errors.rs b/src/errors.rs
index 05642d0a8598..3f00a2976a2a 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -32,7 +32,6 @@ use askama;
 use diesel;
 use r2d2;
 use reqwest;
-use tera;
 use tokio_timer;
 
 pub type Result<T> = result::Result<T, ConverseError>;
@@ -51,9 +50,6 @@ pub enum ConverseError {
     #[fail(display = "a template rendering error occured: {}", reason)]
     Template { reason: String },
 
-    #[fail(display = "a template rendering error occured: {}", reason)]
-    Askama { reason: String },
-
     #[fail(display = "error occured during request handling: {}", error)]
     ActixWeb { error: actix_web::Error },
 
@@ -84,17 +80,9 @@ impl From<r2d2::Error> for ConverseError {
     }
 }
 
-impl From<tera::Error> for ConverseError {
-    fn from(error: tera::Error) -> ConverseError {
-        ConverseError::Template {
-            reason: format!("{}", error),
-        }
-    }
-}
-
 impl From<askama::Error> for ConverseError {
     fn from(error: askama::Error) -> ConverseError {
-        ConverseError::Askama {
+        ConverseError::Template {
             reason: format!("{}", error),
         }
     }