diff options
| author | Rapptz <[email protected]> | 2015-12-16 00:04:15 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-12-16 00:04:15 -0500 |
| commit | 658090f129a3dbcda9bca8354beb197aee9820ac (patch) | |
| tree | c784afe118465f1a030a591ccbceffdd6a4e1aa9 | |
| parent | Cast Retry-After header into a float. (diff) | |
| download | discord.py-658090f129a3dbcda9bca8354beb197aee9820ac.tar.xz discord.py-658090f129a3dbcda9bca8354beb197aee9820ac.zip | |
Fix NameError with itertools in client.
| -rw-r--r-- | discord/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/client.py b/discord/client.py index ad6dcd31..f95c834f 100644 --- a/discord/client.py +++ b/discord/client.py @@ -46,6 +46,7 @@ import websockets import logging, traceback import sys, time, re, json import tempfile, os, hashlib +import itertools log = logging.getLogger(__name__) request_logging_format = '{method} {response.url} has returned {response.status}' |