From 9e95100bf9457da07a1632b4c0bb44b5ecf5d1be Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 2 Jul 2018 09:29:50 +0200 Subject: Reorder arms in match for better readability --- askama_derive/src/input.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/askama_derive/src/input.rs b/askama_derive/src/input.rs index 2787084..683c345 100644 --- a/askama_derive/src/input.rs +++ b/askama_derive/src/input.rs @@ -86,14 +86,14 @@ impl<'a> TemplateInput<'a> { let source = source.expect("template path or source not found in attributes"); let path = match (&source, &ext) { + (&Source::Path(ref path), None) => path::find_template_from_path(path, None), + (&Source::Source(_), Some(ext)) => PathBuf::from(format!("{}.{}", ast.ident, ext)), (&Source::Path(_), Some(_)) => { panic!("'ext' attribute cannot be used with 'path' attribute") } (&Source::Source(_), None) => { panic!("must include 'ext' attribute when using 'source' attribute") } - (&Source::Path(ref path), None) => path::find_template_from_path(path, None), - (&Source::Source(_), Some(ext)) => PathBuf::from(format!("{}.{}", ast.ident, ext)), }; let parent = match ast.data { -- cgit