Skip to content
Snippets Groups Projects
Commit b223b816 authored by dnns01's avatar dnns01
Browse files

Fix error with vote notifications, when not enough votes have been received so far.

parent 9a05dcff
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,9 @@ class VoteCog(commands.Cog):
self.vote_blocked = None
async def notify_vote_result(self, message, final_result=False):
if len(self.votes) < self.MIN_VOTES:
return
votes_list = self.get_votes()
output = f'{self.PLUS} {votes_list[0][0]} ({votes_list[0][1]}%), ' \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment