Skip to content

Commit 74d460a

Browse files
Fix class name
Co-authored-by: BobDotCom <[email protected]>
1 parent c55b7b0 commit 74d460a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/commands/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def respond(self):
137137
if not self.response.is_done():
138138
return self.interaction.response.send_message
139139
else:
140-
raise RuntimeError("Interaction was already issued a response. Try using ApplicationContext.followup() instead.")
140+
raise RuntimeError(f"Interaction was already issued a response. Try using {type(self).__name__}.followup() instead.")
141141

142142
@property
143143
def followup(self):

0 commit comments

Comments
 (0)