Fix monospace error on UUID4

This commit is contained in:
Zeva Rose 2021-06-27 18:45:38 -06:00
parent e72f6e3c01
commit 5bd1e35e64

View file

@ -108,7 +108,7 @@ class DevCog(commands.Cog):
await ctx.send(f"UUID{version} requires data.")
return
if version == 4:
await ctx.send(f"UUID4: `{uuid.uuid4()}``")
await ctx.send(f"UUID4: `{uuid.uuid4()}`")
else:
to_send = None
if OID_VERIFY.match(data):