mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Sistemato un crash se venivano richiesti i risultati senza votazioni in corso
This commit is contained in:
parent
64c30e55b1
commit
0a0be46457
1 changed files with 8 additions and 5 deletions
3
bot.py
3
bot.py
|
@ -51,6 +51,9 @@ class Votazione:
|
|||
astenuti += 1
|
||||
lista += chr(9899)
|
||||
lista += " @" + membro + "\n"
|
||||
if not si and not no and not astenuti:
|
||||
telegram.sendmessage(chr(9888) + " Nessuno ha ancora votato!", self.chat)
|
||||
else:
|
||||
telegram.sendmessage(self.domanda + "\n"
|
||||
"*Risultati:*\n"
|
||||
"Sì: " + str(si) + " (" + str(round(si / (si + no + astenuti) * 100, 2)) + "%)\n"
|
||||
|
|
Loading…
Reference in a new issue