From 9eb1675f3c6dc001ed8beaef9328472332123555 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 5 Nov 2020 13:25:16 -0800 Subject: fix. chore: (codeblock config raw), (remove unused import) --- src/modules/commands/admins/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/commands/admins/config.rs') diff --git a/src/modules/commands/admins/config.rs b/src/modules/commands/admins/config.rs index c3a0252..e3f0820 100644 --- a/src/modules/commands/admins/config.rs +++ b/src/modules/commands/admins/config.rs @@ -28,7 +28,7 @@ impl Command for ConfigRaw { fn execute(&self, _: &mut Context, message: &Message, _: Args) -> Result<(), CommandError> { if let Some(guild_id) = message.guild_id { let guild_data = db.get_guild(guild_id.0 as i64)?; - message.channel_id.say(format!("{:?}", guild_data))?; + message.channel_id.say(format!("```{:?}```", guild_data))?; } else { failed!(GUILDID_FAIL); } -- cgit v1.2.3