diff options
| author | Nathan Perry <avaglir@gmail.com> | 2019-02-18 02:04:29 -0500 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2019-02-18 02:04:29 -0500 |
| commit | 0b525cfe5b1d9999736c34d577da3a936e57c94c (patch) | |
| tree | 763bf01ab4752af61d1bd02f7f8c86da88753b29 /src/main.rs | |
| parent | 3d31b071ff9172018f40004d9c911ad33471cda4 (diff) | |
fix newline problem
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 228ef30..b13137e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,6 @@ #![feature(impl_trait_in_bindings)] #![feature(try_trait)] +#![feature(pattern)] extern crate chrono; #[cfg(feature = "diesel")] @@ -97,7 +98,6 @@ fn run() -> Result<()> { .on_mention(false) .owners(vec![UserId(owner_id)].into_iter().collect()) .case_insensitivity(true) - .delimiter("\n") .delimiter("\t") ) .before(|_ctx, message, cmd| { |
