diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-11-21 21:14:24 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-11-21 21:14:24 +0100 |
commit | 1e72dad497ca57608c14fc6911eee0f9c0afa0cd (patch) | |
tree | c3003de8772ee7793161747b9607925f303651d7 /askama_shared | |
parent | 953a999d8f442b19758699d97c6227d353f9547d (diff) | |
download | askama-1e72dad497ca57608c14fc6911eee0f9c0afa0cd.tar.gz askama-1e72dad497ca57608c14fc6911eee0f9c0afa0cd.tar.bz2 askama-1e72dad497ca57608c14fc6911eee0f9c0afa0cd.zip |
Disabling rustfmt locally doesn't work in stable Rust
Diffstat (limited to 'askama_shared')
-rw-r--r-- | askama_shared/src/parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/askama_shared/src/parser.rs b/askama_shared/src/parser.rs index 631a283..0485390 100644 --- a/askama_shared/src/parser.rs +++ b/askama_shared/src/parser.rs @@ -1,6 +1,6 @@ // rustfmt doesn't do a very good job on nom parser invocations. -#![rustfmt_skip] -#![config_attr(rustfmt, rustfmt_skip)] +//#![rustfmt_skip] +//#![config_attr(rustfmt, rustfmt_skip)] use nom::{self, IResult}; use std::str; |