Skip to content

Commit c89469c

Browse files
authored
Fix error message string
1 parent 2ac8bdf commit c89469c

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(f"Interaction was already issued a response. Try using {type(self).__name__}.followup() instead.")
140+
raise RuntimeError(f"Interaction was already issued a response. Try using {type(self).__name__}.send_followup() instead.")
141141

142142
@property
143143
def send_followup(self):

0 commit comments

Comments
 (0)