diff options
| -rw-r--r-- | discord/iterators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/iterators.py b/discord/iterators.py index b0cb0c77..6a1d8952 100644 --- a/discord/iterators.py +++ b/discord/iterators.py @@ -39,7 +39,7 @@ class LogsFromIterator: self.limit = limit self.before = before self.after = after - self.messages = asyncio.LifoQueue() + self.messages = asyncio.Queue() @asyncio.coroutine def fill_messages(self): |