diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-10-08 11:12:57 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-10-08 11:12:57 +0200 |
commit | ca6706711ebb2c0306d49467406c65073753c16f (patch) | |
tree | 1fe82a8035efa08f19b00e22e213e78f78dc5a9b /askama_derive/src/generator.rs | |
parent | 4498ddd445a37c3d88c6032830856522fea39a8e (diff) | |
download | askama-ca6706711ebb2c0306d49467406c65073753c16f.tar.gz askama-ca6706711ebb2c0306d49467406c65073753c16f.tar.bz2 askama-ca6706711ebb2c0306d49467406c65073753c16f.zip |
Fix formatting
Diffstat (limited to 'askama_derive/src/generator.rs')
-rw-r--r-- | askama_derive/src/generator.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs index 41e1647..2c9fddb 100644 --- a/askama_derive/src/generator.rs +++ b/askama_derive/src/generator.rs @@ -644,7 +644,7 @@ impl<'a> Generator<'a> { Expr::Group(ref inner) => self.visit_group(buf, inner), Expr::MethodCall(ref obj, method, ref args) => { self.visit_method_call(buf, obj, method, args) - }, + } Expr::RustMacro(name, ref args) => self.visit_rust_macro(buf, name, args), } } |