diff options
Diffstat (limited to 'src/commands/roll.rs')
| -rw-r--r-- | src/commands/roll.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/roll.rs b/src/commands/roll.rs index a6ea3d8..a2a05ef 100644 --- a/src/commands/roll.rs +++ b/src/commands/roll.rs @@ -294,7 +294,7 @@ pub fn roll(_ctx: &mut Context, msg: &Message, args: Args) -> Result<()> { Err(e) => { let parse_err = e.downcast::<CalcParseError>().unwrap(); if let CalcParseError::NotReadToEnd { remaining } = parse_err { - error!("parsing {}: failed to consume '{}'", args.rest(), remaining); + error!("parsing '{}': failed to consume '{}'", args.rest(), remaining); send(msg.channel_id, "I COULDN'T READ THAT YOU FUCK", msg.tts) } else { Err(parse_err.into()) |
