Skip to content

Commit b6d708b

Browse files
committed
fix: matching is already pop()'d
1 parent 3dda945 commit b6d708b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sopel/modules/pronouns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def set_pronouns(bot, trigger):
218218
requested_pronouns = matching.pop(0)
219219
if matching:
220220
disambig = " Or, if you meant one of these, please tell me: {}".format(
221-
", ".join(matching[1:])
221+
", ".join(matching)
222222
)
223223

224224
bot.db.set_nick_value(trigger.nick, 'pronouns', requested_pronouns)

0 commit comments

Comments
 (0)