mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-05 17:36:15 +00:00
Drop support for Python 3.4 and make minimum version 3.5.2.
This commit is contained in:
@ -137,7 +137,7 @@ class Reaction:
|
||||
iterator = reaction.users()
|
||||
while True:
|
||||
try:
|
||||
user = yield from iterator.next()
|
||||
user = await iterator.next()
|
||||
except discord.NoMoreItems:
|
||||
break
|
||||
else:
|
||||
|
Reference in New Issue
Block a user