Update miscellaneous.py

This commit is contained in:
Elmon11 2020-12-02 23:50:43 +01:00 committed by GitHub
parent e2a8768a42
commit 8058d5639b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
import discord
import events
import ast
from datetime import datetime
from discord.ext import commands
@ -76,7 +77,7 @@ class Miscellaneous(commands.Cog):
async def debug(self, ctx, *, cmd):
'Executes a line of code'
try:
result = eval(cmd)
result = ast.literal_eval(cmd)
if asyncio.iscoroutine(result):
result = await result
await ctx.send(f'''```py