Browse Source

Fix bucket key to not have the method in there.

pull/2327/head
Rapptz 6 years ago
parent
commit
1c6c26ee38
  1. 2
      discord/http.py

2
discord/http.py

@ -63,7 +63,7 @@ class Route:
@property
def bucket(self):
# the bucket is just method + path w/ major parameters
return '{0.method}:{0.channel_id}:{0.guild_id}:{0.path}'.format(self)
return '{0.channel_id}:{0.guild_id}:{0.path}'.format(self)
class MaybeUnlock:
def __init__(self, lock):

Loading…
Cancel
Save