diff options
| author | Rapptz <[email protected]> | 2016-08-04 21:38:35 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-08-04 21:39:44 -0400 |
| commit | a55e1241a7526848f33f3df4c09a3dbb262ab42b (patch) | |
| tree | 4ea7a7e3a1d81d5d5f8f233b701f7cc37b16efa8 /discord/ext | |
| parent | Add emoji url property (diff) | |
| download | discord.py-a55e1241a7526848f33f3df4c09a3dbb262ab42b.tar.xz discord.py-a55e1241a7526848f33f3df4c09a3dbb262ab42b.zip | |
[commands] Add missing inspect import in converter.py
Diffstat (limited to 'discord/ext')
| -rw-r--r-- | discord/ext/commands/converter.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index f0041d77..7bb0f835 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -27,6 +27,7 @@ DEALINGS IN THE SOFTWARE. import discord import asyncio import re +import inspect from .errors import BadArgument, NoPrivateMessage |