aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/http.py b/discord/http.py
index 2a1f0cc7..0c4b1a53 100644
--- a/discord/http.py
+++ b/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):